content/xml/document/test/test_bug232004.xhtml

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 <html xmlns="http://www.w3.org/1999/xhtml">
     2 <!--
     3 https://bugzilla.mozilla.org/show_bug.cgi?id=232004
     4 -->
     5 <head>
     6   <title>Test for Bug 232004</title>
     7   <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>        
     8   <script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"/>
     9   <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
    10 </head>
    11 <body>
    12 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=232004">Mozilla Bug 232004</a>
    13 <p id="display">
    14   <input id="one" type="text" />
    15   <input style="display: none" id="two" type="text" />
    16 </p>
    17 <div id="content" style="display: none">
    19 </div>
    20 <pre id="test">
    21 <script class="testbody" type="text/javascript">
    22 <![CDATA[
    24 /** Test for Bug 232004 **/
    26 $("one").focus();
    27 is(document.activeElement, $("one"), "node one should be focused");
    29 $("two").focus();
    30 isnot(document.activeElement, $("two"),
    31       "node two has display:none and should not take focus");
    33 ]]>
    34 </script>
    35 </pre>
    36 </body>
    37 </html>

mercurial