layout/reftests/bugs/385870-1-ref.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>
     2 <html>
     3 <head>
     4 <title></title>
     5 <style>
     6 #red {
     7   position: absolute;
     8   background-color: blue;
     9   top: 10px;
    10   left: 10px;
    11 }
    13 #green {
    14   position: absolute;
    15   background-color: blue;
    16   top: 10px;
    17   width: 80px;
    18   right: 10px;
    19 }
    21 #blue {
    22   position: absolute;
    23   background-color: blue;
    24   left: 10px;
    25   height: 80px;
    26   bottom: 10px;
    27 }
    29 #yellow {
    30   position: absolute;
    31   background-color: blue;
    32   right: 10px;
    33   width: 80px;
    34   height: 80px;
    35   bottom: 10px;
    36 }
    38 </style>
    39 <script>
    41 </script>
    42 </head>
    43 <body>
    45 <textarea id=red></textarea>
    46 <textarea id=green></textarea>
    47 <textarea id=blue></textarea>
    48 <textarea id=yellow></textarea>
    50 </body>
    51 </html>

mercurial