test_bug726949.xhtml (1692B)
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=726949 6 --> 7 <window title="Mozilla Bug 726949" 8 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 9 style="display: block;"> 10 <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/> 11 12 <!-- test results are displayed in the html:body --> 13 <body xmlns="http://www.w3.org/1999/xhtml"> 14 <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=726949" 15 target="_blank">Mozilla Bug 726949</a> 16 </body> 17 18 <!-- test code goes here --> 19 <script type="application/javascript"> 20 <![CDATA[ 21 /** Test for Bug 726949 */ 22 var s = new Cu.Sandbox(window, { sandboxPrototype: window } ); 23 var t; 24 var desc; 25 try { 26 t = Cu.evalInSandbox('top', s); 27 is(t, window.top, "Should have gotten the right thing back"); 28 desc = Cu.evalInSandbox('Object.getOwnPropertyDescriptor(Object.getPrototypeOf(this), "Cu")', s); 29 isnot(desc, undefined, 30 "Should have an own 'Cu' property"); 31 is(desc.value, Cu, "Should have the right value"); 32 var loc = Cu.evalInSandbox('location', s); 33 is(loc.href, location.href, "Should have the right location"); 34 var display = Cu.evalInSandbox('getComputedStyle(document.documentElement, "").display', s); 35 is(display, "block", "Should be able to call getComputedStyle"); 36 } catch (e) { 37 ok(false, "Should not get an exception: " + e); 38 } 39 ]]> 40 </script> 41 </window>