content/base/crashtests/535926-1.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 <html class="reftest-wait">
     2 <head>
     4 <script type="text/javascript">
     6 var i = 0;
     7 function mmf()
     8 {
     9   if (++i == 2) {
    10     document.body.innerHTML = "<marquee>";
    11     document.documentElement.removeAttribute("class");
    12   }
    13 }
    15 function init()
    16 {
    17   document.documentElement.offsetHeight;
    18   for (var j = 0; j < 2; ++j) {
    19     var iframe = document.createElementNS("http://www.w3.org/1999/xhtml", "iframe");
    20     iframe.addEventListener("load", mmf, false);
    21     document.body.appendChild(iframe);
    22   }
    23 }
    25 </script>
    26 </head>
    27 <body onload="setTimeout(init, 0);"></body>
    28 </html>

mercurial