test_sandbox_image.xhtml (1225B)
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 src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/> 10 11 <iframe id="t"></iframe> 12 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> 18 19 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 = Cu.Sandbox(win, { sandboxPrototype: win }); 27 var result = Cu.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 } 32 33 SimpleTest.waitForExplicitFinish(); 34 addLoadEvent(doTest); 35 ]]> 36 </script> 37 </window>