test_bug726949.xul 1.7 KB

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