Bug 1688354 [wpt PR 27298] - Treat 'rem' as an absolute unit for font size, a=testonly
[gecko.git] / widget / tests / window_bug593307_offscreen.xhtml
blob422c4068127a01ec6bbf1860e18656819fb56086
1 <?xml version="1.0"?>
2 <?xml-stylesheet href="chrome://global/skin" type="text/css"?>
3 <window title="Mozilla Bug 593307"
4 width="100" height="100"
5 onload="onLoad();"
6 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
8 <script src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js" />
10 <body xmlns="http://www.w3.org/1999/xhtml" id="body">
11 </body>
13 <script class="testbody" type="application/javascript">
14 <![CDATA[
16 var centerscreen = null;
17 var SimpleTest = window.arguments[0];
18 var finish = window.arguments[1];
20 function onLoad()
22 centerscreen = window.openDialog('window_bug593307_centerscreen.xhtml','', 'chrome,centerscreen,dependent,dialog=no');
25 function finished() {
26 centerscreen.close();
27 finish();
30 ]]>
31 </script>
33 </window>