dom/tests/mochitest/chrome/test_bug830858.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=830858
     6 -->
     7 <window title="Mozilla Bug 830858"
     8         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
     9          onload="runTests()">
    10   <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
    12   <!-- test code goes here -->
    13   <script type="application/javascript">
    14   <![CDATA[
    16   /** Test for Bug 830858 **/
    18   function runTests() {
    19     window.open("file_bug830858.xul", "_blank", "chrome,width=600,height=550");
    20   }
    22   function finishedTests() {
    23     SimpleTest.finish();
    24   }
    26   SimpleTest.waitForExplicitFinish();
    28   ]]>
    29   </script>
    31   <!-- test results are displayed in the html:body -->
    32   <body xmlns="http://www.w3.org/1999/xhtml">
    33   <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=830858"
    34      target="_blank">Mozilla Bug 830858</a>
    35   </body>
    36 </window>

mercurial