view/crashtests/281743-1.html

Thu, 15 Jan 2015 15:59:08 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:59:08 +0100
branch
TOR_BUG_9701
changeset 10
ac0c01689b40
permissions
-rw-r--r--

Implement a real Private Browsing Mode condition by changing the API/ABI;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
     2 <html>
     3 <head>
     4 <title>Testcase bug 281743</title>
     5 <style type="text/css">
     6 #header   { position: fixed; top: 0; left: 0; z-index: 100; }
     7 #mainmenu { position: fixed; top: 0; left: 0; z-index: 200; }
     8 </style>
     9 <script type="text/javascript">
    10 window.onload = function(e) {
    11   var e = document.getElementsByTagName("style")[0];
    12   e.disabled = true;
    13   e.disabled = false;
    14 }
    15 </script>
    16 </head><body><div id="page"><div id="header"></div><div id="mainmenu"></div></div></body></html>

mercurial