2 <?xml-stylesheet type=
"text/css" href=
"chrome://global/skin"?>
3 <?xml-stylesheet type=
"text/css" href=
"chrome://mochikit/content/tests/SimpleTest/test.css"?>
5 https://bugzilla.mozilla.org/show_bug.cgi?id=726949
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"/>
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>
18 <!-- test code goes here -->
19 <script type=
"application/javascript">
21 /** Test for Bug
726949 **/
22 var s = new Cu.Sandbox(window, { sandboxPrototype: window } );
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");
37 ok(false,
"Should not get an exception: " + e);