Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | <html> |
michael@0 | 2 | <head> |
michael@0 | 3 | |
michael@0 | 4 | <script> |
michael@0 | 5 | function boom() |
michael@0 | 6 | { |
michael@0 | 7 | document.body.style.position = "fixed" |
michael@0 | 8 | |
michael@0 | 9 | setTimeout(boom2, 1); |
michael@0 | 10 | } |
michael@0 | 11 | |
michael@0 | 12 | function boom2() |
michael@0 | 13 | { |
michael@0 | 14 | lappy = document.getElementById("lappy"); |
michael@0 | 15 | lappy.style.display = "none" |
michael@0 | 16 | |
michael@0 | 17 | setTimeout(boom3, 200); |
michael@0 | 18 | } |
michael@0 | 19 | |
michael@0 | 20 | function boom3() |
michael@0 | 21 | { |
michael@0 | 22 | dump("Reloading\n"); |
michael@0 | 23 | location.reload(); |
michael@0 | 24 | } |
michael@0 | 25 | |
michael@0 | 26 | </script> |
michael@0 | 27 | |
michael@0 | 28 | |
michael@0 | 29 | </head> |
michael@0 | 30 | |
michael@0 | 31 | |
michael@0 | 32 | <body bgcolor="black" onload="boom()"> |
michael@0 | 33 | |
michael@0 | 34 | <span style="overflow: scroll; display: -moz-box;"></span> |
michael@0 | 35 | |
michael@0 | 36 | <embed id="lappy" src="" width=550 height=400 TYPE="application/x-shockwave-flash" ></embed> |
michael@0 | 37 | |
michael@0 | 38 | </body> |
michael@0 | 39 | </html> |