layout/reftests/css-visited/border-collapse-1-ref.html

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
permissions
-rw-r--r--

Integrate suggestion from review to improve consistency with existing code.

michael@0 1 <!DOCTYPE HTML>
michael@0 2 <title>Test for privacy restrictions on :visited (Bug 147777)</title>
michael@0 3 <style type="text/css">
michael@0 4
michael@0 5 div.table { display: table; border-collapse: collapse }
michael@0 6 div.row { display: table-row }
michael@0 7 div.link, div.visited { display: table-cell }
michael@0 8
michael@0 9 .row1 .link { border: medium solid blue }
michael@0 10 .row1 .visited { border: medium solid fuchsia }
michael@0 11
michael@0 12 .row2 .link { border: thin dotted black }
michael@0 13 .row2 .visited { border: thin dotted red }
michael@0 14
michael@0 15 .row3 .link { border: 7px double gray }
michael@0 16 .row3 .visited { border: 7px double olive }
michael@0 17
michael@0 18 </style>
michael@0 19 <div class="table">
michael@0 20 <div class="row row1">
michael@0 21 <div class="link">unvisited</div>
michael@0 22 <div class="visited">visited</div>
michael@0 23 </div>
michael@0 24 <div class="row row2">
michael@0 25 <div class="visited">visited</div>
michael@0 26 <div class="link">unvisited</div>
michael@0 27 </div>
michael@0 28 <div class="row row3">
michael@0 29 <div class="link">unvisited</div>
michael@0 30 <div class="visited">visited</div>
michael@0 31 </div>
michael@0 32 </div>

mercurial