|
1 <?xml version="1.0" encoding="UTF-8"?> |
|
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "xhtml1-strict.dtd"> |
|
3 <html xmlns='http://www.w3.org/1999/xhtml' id="root" class="reftest-wait"> |
|
4 |
|
5 <div id="D1"><div id="D2"/></div> |
|
6 |
|
7 <script> |
|
8 <![CDATA[ |
|
9 |
|
10 function gE(id) { return document.getElementById(id); } |
|
11 |
|
12 function init() |
|
13 { |
|
14 gE("root").style.display = "table"; |
|
15 |
|
16 gE("D1").style.position = "absolute"; |
|
17 |
|
18 setTimeout(function() {gE("D2").style.position = "fixed";}, 100); |
|
19 setTimeout(function() {gE("D1").style.overflow = "hidden";}, 200); |
|
20 setTimeout(function() {gE("root").style.width = "200%"; document.documentElement.removeAttribute("class"); }, 300); |
|
21 } |
|
22 |
|
23 window.addEventListener("load", init, false); |
|
24 |
|
25 ]]> |
|
26 </script> |
|
27 |
|
28 </html> |