OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 .block { | |
4 width: 25px; | |
5 height: 50px; | |
6 background-color: green; | |
7 } | |
8 | |
9 .float { | |
10 width: 25px; | |
11 height: 50px; | |
12 background-color: green; | |
13 float: left; | |
14 } | |
15 </style> | |
16 <p>crbug.com/322039: There should be a green <em>square</em> below.</p> | |
17 <div> | |
18 <br> | |
19 <div id="first" class="block"></div> | |
20 <div class="float"></div> | |
21 </div> | |
22 <script> | |
23 document.body.offsetTop; | |
24 document.getElementById("first").style.display = "inline-block"; | |
25 </script> | |
26 | |
OLD | NEW |