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 <html xmlns="http://www.w3.org/1999/xhtml">
3 <object id="mw_ij" xmlns="http://www.w3.org/1999/xhtml" style="display: none;"/>
5 <textnode xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
6 <dir xmlns="http://www.w3.org/1999/xhtml" style="overflow: scroll;position: fixed;"/>
7 </textnode>
9 <wizardpage id="mw_ab" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
10 <label id="mw_kl">
11 <toolbox style="float: right;"/>
12 </label>
13 </wizardpage>
15 <listbox id="mw_cd" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"/>
17 <script xmlns="http://www.w3.org/1999/xhtml">
18 function doe() {
19 document.getElementById('mw_ab').insertBefore(document.getElementById('mw_cd'), document.getElementById('mw_ab').childNodes[0]);
20 document.documentElement.offsetHeight;
21 document.getElementById('mw_ij').appendChild(document.getElementById('mw_kl'));
22 document.documentElement.offsetHeight;
23 }
24 setTimeout(doe, 100);
26 setTimeout(function() {window.location=window.location;}, 500);
27 </script>
29 </html>