Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onload="setTimeout(foopy, 30);" class="reftest-wait">
3 <script>
5 <![CDATA[
7 var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
9 function foopy()
10 {
11 var hbox = document.createElementNS(XUL_NS, 'hbox');
12 var tooltip = document.createElementNS(XUL_NS, 'tooltip');
13 var vbox = document.createElementNS(XUL_NS, 'vbox');
14 var toolbarspring = document.createElementNS(XUL_NS, 'toolbarspring');
16 document.documentElement.appendChild(hbox);
17 hbox.appendChild(toolbarspring);
19 vbox.appendChild(tooltip);
20 toolbarspring.appendChild(vbox);
22 document.documentElement.removeAttribute("class");
23 }
25 ]]>
26 </script>
28 </window>