|
1 <html xmlns="http://www.w3.org/1999/xhtml"> |
|
2 <head> |
|
3 <style> |
|
4 /* this stylesheet is reduced from quirk.css */ |
|
5 |
|
6 li { |
|
7 list-style-position: inside; |
|
8 } |
|
9 |
|
10 .t:first-child { |
|
11 padding-top: 1em; |
|
12 } |
|
13 |
|
14 </style> |
|
15 |
|
16 <script> |
|
17 |
|
18 function rm(n) { n.parentNode.removeChild(n); } |
|
19 |
|
20 window.addEventListener("load", function() { |
|
21 document.documentElement.offsetHeight; |
|
22 rm(document.getElementById('x')); |
|
23 }, false); |
|
24 |
|
25 </script> |
|
26 </head> |
|
27 |
|
28 <body style="-moz-column-count: 2000;"> |
|
29 <li> |
|
30 <ol class="t" style="position: relative;"> |
|
31 <span id="x"></span> |
|
32 <ol class="t" style="list-style-position: inside;"> |
|
33 <div style="position: absolute;"> |
|
34 <li> |
|
35 <div style="position: absolute;"> |
|
36 <li> |
|
37 <ol class="t"></ol> |
|
38 </li> |
|
39 </div> |
|
40 </li> |
|
41 </div> |
|
42 </ol> |
|
43 </ol> |
|
44 </li> |
|
45 </body> |
|
46 |
|
47 </html> |