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
1 <html class="reftest-wait">
2 <head>
3 <script>
5 function boom()
6 {
7 document.getElementById("ta").style.overflow = "scroll";
8 setTimeout(boom2, 12);
9 }
11 function boom2()
12 {
13 document.getElementById("ta").style.overflow = "";
14 setTimeout(boom, 12);
15 }
17 function cont()
18 {
19 document.documentElement.removeAttribute("class");
20 }
21 </script>
22 </head>
24 <body onload="boom(); setTimeout(cont, 800);">
26 <textarea id="ta">x</textarea>
28 </body>
29 </html>