layout/forms/crashtests/370703-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>
     3 <script>
     5 function boom()
     6 {
     7   document.getElementById("M").style.width = "6em";
     8   document.documentElement.removeAttribute("class");
     9 }
    11 </script>
    13 <body onload="setTimeout(boom, 30);">
    15 <div style="position:absolute; top: 50px; left: 50px; border: 2px solid orange;">
    17   <select>
    18     <option id="M">M</option>
    19   </select>
    21   <br>
    23   <select style="width: 200%">
    24     <option style="visibility: collapse; overflow: auto; display: table-footer-group;">X</option>
    25   </select>
    27 </div>
    29 </body>
    30 </html>

mercurial