layout/reftests/margin-collapsing/block-horizontal-4-ref.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 <!DOCTYPE html>
     2 <html>
     3 <head>
     4 <style type="text/css">
     5 #float-blue {
     6  float: right;
     7  margin-left: 40px;
     8  border: solid blue;
     9  border-width: 0 20px;
    10  background-color: green;
    11  width: 40px;
    12  height: 100px;
    13 }
    14 .float-green {
    15  float: right;
    16  background-color: green;
    17  width: 40px;
    18  height: 100px;
    19 }
    20 </style>
    21 </head>
    22 <body>
    23 <div id="float-blue"></div><div class="float-green"></div>
    24 </body>
    25 </html>

mercurial