layout/reftests/backgrounds/background-clip-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 <title>background-clip</title>
     3 <style type="text/css">
     5 div {
     6   position: absolute;
     7 }
     9 div.color {
    10   top: 10px;
    11   background-color: blue;
    12 }
    14 div.image {
    15   top: 110px;
    16   background-color: blue;
    17 }
    19 div.border {
    20   left: 18px;
    21   margin-top: 1px;
    22   width: 76px;
    23   height: 42px;
    24 }
    26 div.padding {
    27   left: 130px;
    28   margin-top: 4px;
    29   width: 55px;
    30   height: 33px;
    31 }
    33 div.content {
    34   left: 237px;
    35   margin-top: 9px;
    36   width: 37px;
    37   height: 19px;
    38 }
    40 </style>
    41 <div class="color border"></div>
    42 <div class="color padding"></div>
    43 <div class="color content"></div>
    44 <div class="image border"></div>
    45 <div class="image padding"></div>
    46 <div class="image content"></div>

mercurial