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

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

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 a { text-decoration: none; color: initial; display: table-cell }
michael@0 8
michael@0 9 .row1 :link { border: medium solid blue }
michael@0 10 .row1 :visited { border: thick dashed fuchsia }
michael@0 11
michael@0 12 .row2 :link { border: thin dotted black }
michael@0 13 .row2 :visited { border: thick hidden rgba(255, 0, 0, 0.5) }
michael@0 14
michael@0 15 .row3 :link { border: 7px double gray }
michael@0 16 .row3 :visited { border: 4px inset olive }
michael@0 17
michael@0 18 </style>
michael@0 19 <div class="table">
michael@0 20 <div class="row row1">
michael@0 21 <a href="unvisited-page.html">unvisited</a>
michael@0 22 <a href="visited-page.html">visited</a>
michael@0 23 </div>
michael@0 24 <div class="row row2">
michael@0 25 <a href="visited-page.html">visited</a>
michael@0 26 <a href="unvisited-page.html">unvisited</a>
michael@0 27 </div>
michael@0 28 <div class="row row3">
michael@0 29 <a href="unvisited-page.html">unvisited</a>
michael@0 30 <a href="visited-page.html">visited</a>
michael@0 31 </div>
michael@0 32 </div>

mercurial