Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
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> |