intl/uconv/tests/test_bug843434.html

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 <!DOCTYPE HTML>
     2 <html>
     3 <!--
     4 https://bugzilla.mozilla.org/show_bug.cgi?id=843434
     5 -->
     6 <head>
     7   <meta http-equiv="Content-type" content="text/html; charset=UTF-8">
     8   <title>Test for Bug 843434</title>
     9   <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
    10   <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
    11   <!-- This next 'link' is part of the test, it may cause an assertion. -->
    12   <link rel=stylesheet href="data:text/css;charset=ISO-2022-JP,%cc">
    13 </head>
    14 <body onload="test()">
    15 <pre id="test">
    16 <script class="testbody" type="text/javascript">
    17 function test()
    18 {
    19   ok(true, "Test for no prior assertion.");
    20   SimpleTest.finish();
    21 }
    22 SimpleTest.waitForExplicitFinish();
    23 </script>
    24 </pre>
    25 </body>
    26 </html>

mercurial