Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 <?xml version="1.0"?>
2 <?xml-stylesheet type="text/css" href="chrome://global/skin"?>
3 <?xml-stylesheet type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"?>
4 <!--
5 https://bugzilla.mozilla.org/show_bug.cgi?id=616397
6 -->
7 <window title="Mozilla Bug 616397"
8 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
9 <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
11 <iframe id="t"></iframe>
13 <!-- test results are displayed in the html:body -->
14 <body xmlns="http://www.w3.org/1999/xhtml">
15 <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=616397"
16 target="_blank">Mozilla Bug 616397</a>
17 </body>
20 <!-- test code goes here -->
21 <script type="application/javascript">
22 <![CDATA[
23 /** Test for Bug 616397 **/
24 function doTest() {
25 var win = $("t").contentWindow;
26 var sandbox = Components.utils.Sandbox(win, { sandboxPrototype: win });
27 var result = Components.utils.evalInSandbox("new Image()", sandbox);
28 isnot(result, null, "Should have an image");
29 is(result.tagName, "IMG", "Should have the right tag name");
30 SimpleTest.finish();
31 }
33 SimpleTest.waitForExplicitFinish();
34 addLoadEvent(doTest);
35 ]]>
36 </script>
37 </window>