border-collapse-1.html (957B)
1 <!DOCTYPE HTML> 2 <title>Test for privacy restrictions on :visited (Bug 147777)</title> 3 <style type="text/css"> 4 5 div.table { display: table; border-collapse: collapse } 6 div.row { display: table-row } 7 a { text-decoration: none; color: initial; display: table-cell } 8 9 .row1 :link { border: medium solid blue } 10 .row1 :visited { border: thick dashed fuchsia } 11 12 .row2 :link { border: thin dotted black } 13 .row2 :visited { border: thick hidden rgba(255, 0, 0, 0.5) } 14 15 .row3 :link { border: 7px double gray } 16 .row3 :visited { border: 4px inset olive } 17 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>