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><html><head><script>
2 function boom()
3 {
4 var a = document.getElementsByTagName('div')[0];
5 var b = a.firstChild;
7 var r = document.createRange();
8 r.setStart(b, 1);
9 r.setEnd(a, 1);
11 b.splitText(0);
12 }
13 </script></head><body onload="boom();">
14 <div>b</div>
15 </body></html>