layout/reftests/css-visited/border-collapse-1.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>Test for privacy restrictions on :visited (Bug 147777)</title>
     3 <style type="text/css">
     5 div.table { display: table; border-collapse: collapse }
     6 div.row { display: table-row }
     7 a { text-decoration: none; color: initial; display: table-cell }
     9 .row1 :link { border: medium solid blue }
    10 .row1 :visited { border: thick dashed fuchsia }
    12 .row2 :link { border: thin dotted black }
    13 .row2 :visited { border: thick hidden rgba(255, 0, 0, 0.5) }
    15 .row3 :link { border: 7px double gray }
    16 .row3 :visited { border: 4px inset olive }
    18 </style>
    19 <div class="table">
    20   <div class="row row1">
    21     <a href="unvisited-page.html">unvisited</a>
    22     <a href="visited-page.html">visited</a>
    23   </div>
    24   <div class="row row2">
    25     <a href="visited-page.html">visited</a>
    26     <a href="unvisited-page.html">unvisited</a>
    27   </div>
    28   <div class="row row3">
    29     <a href="unvisited-page.html">unvisited</a>
    30     <a href="visited-page.html">visited</a>
    31   </div>
    32 </div>

mercurial