1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/css-visited/border-collapse-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,32 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<title>Test for privacy restrictions on :visited (Bug 147777)</title> 1.6 +<style type="text/css"> 1.7 + 1.8 +div.table { display: table; border-collapse: collapse } 1.9 +div.row { display: table-row } 1.10 +a { text-decoration: none; color: initial; display: table-cell } 1.11 + 1.12 +.row1 :link { border: medium solid blue } 1.13 +.row1 :visited { border: thick dashed fuchsia } 1.14 + 1.15 +.row2 :link { border: thin dotted black } 1.16 +.row2 :visited { border: thick hidden rgba(255, 0, 0, 0.5) } 1.17 + 1.18 +.row3 :link { border: 7px double gray } 1.19 +.row3 :visited { border: 4px inset olive } 1.20 + 1.21 +</style> 1.22 +<div class="table"> 1.23 + <div class="row row1"> 1.24 + <a href="unvisited-page.html">unvisited</a> 1.25 + <a href="visited-page.html">visited</a> 1.26 + </div> 1.27 + <div class="row row2"> 1.28 + <a href="visited-page.html">visited</a> 1.29 + <a href="unvisited-page.html">unvisited</a> 1.30 + </div> 1.31 + <div class="row row3"> 1.32 + <a href="unvisited-page.html">unvisited</a> 1.33 + <a href="visited-page.html">visited</a> 1.34 + </div> 1.35 +</div>