layout/reftests/margin-collapsing/inline-block-sibling-1-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 <!-- specifying all heights in em units so that large font sizes
     5      don't disrupt relationships; everything will scale together -->
     6 <style type="text/css">
     7 #parent {
     8  width: 200px;
     9  background-color: lightgreen;
    10 }
    11 #inline-block1, #inline-block2 {
    12  height: 2em;
    13  background-color: green;
    14 }
    15 #margin {
    16  height: 2em;
    17 }
    18 </style>
    19 </head>
    20 <body>
    21 <div id="parent">
    22  <div id="inline-block1"></div>
    23  <div id="margin"></div>
    24  <div id="inline-block2"></div>
    25 </div>
    26 </body>
    27 </html>

mercurial