mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-09 09:20:15 +01:00
31 lines
499 B
HTML
31 lines
499 B
HTML
|
<html><head>
|
||
|
<title>Testcase for bug 94468</title>
|
||
|
<style>
|
||
|
#red {
|
||
|
position: absolute; /* missing top property */
|
||
|
left: 7px;
|
||
|
width: 300px;
|
||
|
height: 300px;
|
||
|
border: 1px solid red;
|
||
|
}
|
||
|
#blue {
|
||
|
position: absolute;
|
||
|
top: 0px; /* specified top */
|
||
|
left: 310px;
|
||
|
width: 300px;
|
||
|
height: 300px;
|
||
|
border: 1px solid blue;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
|
||
|
<div id="red"></div>
|
||
|
<div id="blue"></div>
|
||
|
|
||
|
<img width="1" height="300" border="1">
|
||
|
|
||
|
|
||
|
</body></html>
|