|
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 <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/> |
|
10 |
|
11 <!-- test results are displayed in the html:body --> |
|
12 <body xmlns="http://www.w3.org/1999/xhtml"> |
|
13 <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=726949" |
|
14 target="_blank">Mozilla Bug 726949</a> |
|
15 </body> |
|
16 |
|
17 <!-- test code goes here --> |
|
18 <script type="application/javascript"> |
|
19 <![CDATA[ |
|
20 /** Test for Bug 726949 **/ |
|
21 var Cu = Components.utils; |
|
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> |