Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
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>