layout/base/tests/chrome/test_bug812817.xul

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 <?xml version="1.0"?>
     2 <?xml-stylesheet type="text/css" href="chrome://global/skin"?>
     3 <?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css"
     4                  type="text/css"?>
     5 <!--
     6 https://bugzilla.mozilla.org/show_bug.cgi?id=812817
     7 -->
     8 <window title="Mozilla Bug 812817"
     9         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
    10         onload="doTest()">
    11   <script type="application/javascript"
    12           src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
    13 <panel id="panel" width="200" height="200" onpopupshown="continueTest()">
    14 </panel>
    15 <body xmlns="http://www.w3.org/1999/xhtml">
    16 <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=812817"
    17    target="_blank">Mozilla Bug 812817</a>
    18 </body>
    19   <!-- test code goes here -->
    20 <script type="application/javascript">
    21 <![CDATA[
    22 SimpleTest.waitForExplicitFinish();
    24 var panel = document.getElementById('panel');
    25 function doTest() {
    26   panel.openPopup(null, '', 500, 500, false, false, null);
    27 }
    29 function continueTest() {
    30   panel.style.background = "url(blue-32x32.png)";
    31   setTimeout(function() {
    32     ok(true, "Didn't crash");
    33     SimpleTest.finish();
    34   }, 50);
    35 }
    37 ]]></script>
    38 </window>

mercurial