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 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
6 function boom()
7 {
8 var f = document.getElementById("f");
9 var w = f.contentWindow;
10 var d = w.document;
11 var range = d.createRange();
12 w.getSelection().removeAllRanges();
13 w.getSelection().addRange(range);
14 var r = d.documentElement;
15 d.removeChild(r);
16 w.getSelection().collapse(r,0);
17 document.adoptNode(r);
18 f.parentNode.removeChild(f);
19 }
21 </script>
22 </head>
23 <body onload="boom();">
24 <iframe src="data:text/html,1" id="f"></iframe>
25 </body>
26 </html>