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 xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
2 <head>
4 <bindings xmlns="http://www.mozilla.org/xbl">
5 <binding id="foo">
6 <content>
7 <children xmlns="http://www.mozilla.org/xbl" />
8 </content>
9 </binding>
10 </bindings>
12 <script>
13 function boom()
14 {
15 document.getElementById("div").style.MozBinding = "url('#foo')";
17 var opt1 = document.getElementById("opt1");
18 opt1.removeChild(opt1.firstChild);
20 document.getElementById("textarea").value += " ";
22 document.documentElement.removeAttribute("class")
23 }
24 </script>
26 </head>
28 <body onload="setTimeout(boom, 30);">
30 <div id="div">
31 <textarea rows="3" cols="5" id="textarea"></textarea>
32 </div>
34 <select>
35 <option id="opt1">opt1</option>
36 </select>
38 </body>
39 </html>