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>
5 function test_func() {
6 var bar = new Option();
7 parent.is(bar.ownerDocument, document,
8 "Unexpected document for our new option");
9 bar = new Image();
10 parent.is(bar.ownerDocument, document,
11 "Unexpected document for our new image");
12 bar = new parent.Option();
13 parent.is(bar.ownerDocument, parent.document,
14 "Unexpected document for parent new option");
15 bar = new parent.Image();
16 parent.is(bar.ownerDocument, parent.document,
17 "Unexpected document for parent new image");
18 parent.isnot(parent.document, document, "Documents should be different");
19 }
20 </script>
21 </head>
22 <html>