Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
[gecko.git] / widget / tests / window_bug593307_offscreen.xul
blob0857c73a60c79a0e6f9ab02c8c98b0a3ba279fdc
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 type="application/javascript"
9 src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js" />
11 <body xmlns="http://www.w3.org/1999/xhtml" id="body">
12 </body>
14 <script class="testbody" type="application/javascript">
15 <![CDATA[
17 var centerscreen = null;
18 var SimpleTest = window.arguments[0];
19 var finish = window.arguments[1];
21 function onLoad()
23 centerscreen = window.openDialog('window_bug593307_centerscreen.xul','', 'chrome,centerscreen,dependent,dialog=no');
26 function finished() {
27 centerscreen.close();
28 finish();
31 ]]>
32 </script>
34 </window>