dom/tests/mochitest/chrome/test_sandbox_image.xul

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     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 type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
    11   <iframe id="t"></iframe>
    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>
    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 = Components.utils.Sandbox(win, { sandboxPrototype: win });
    27       var result = Components.utils.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     }
    33     SimpleTest.waitForExplicitFinish();
    34     addLoadEvent(doTest);
    35   ]]>
    36   </script>
    37 </window>

mercurial