Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
1 <html class="reftest-wait">
2 <head>
4 <script>
5 function boom()
6 {
7 document.body.offsetHeight;
9 var parent = document.getElementById("body");
11 var newdiv = document.createElement("div");
12 newdiv.appendChild(document.createTextNode("5"));
13 parent.appendChild(newdiv);
15 document.body.offsetHeight;
16 document.documentElement.className = "";
17 }
18 </script>
20 </head>
21 <body id="body" onload="boom();">
22 <div>1</div>
23 <div>2</div>
24 <div>3</div>
25 <div>4</div>
26 </body>
27 </html>