border-collapse-1.html 957 B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE HTML>
  2. <title>Test for privacy restrictions on :visited (Bug 147777)</title>
  3. <style type="text/css">
  4. div.table { display: table; border-collapse: collapse }
  5. div.row { display: table-row }
  6. a { text-decoration: none; color: initial; display: table-cell }
  7. .row1 :link { border: medium solid blue }
  8. .row1 :visited { border: thick dashed fuchsia }
  9. .row2 :link { border: thin dotted black }
  10. .row2 :visited { border: thick hidden rgba(255, 0, 0, 0.5) }
  11. .row3 :link { border: 7px double gray }
  12. .row3 :visited { border: 4px inset olive }
  13. </style>
  14. <div class="table">
  15. <div class="row row1">
  16. <a href="unvisited-page.html">unvisited</a>
  17. <a href="visited-page.html">visited</a>
  18. </div>
  19. <div class="row row2">
  20. <a href="visited-page.html">visited</a>
  21. <a href="unvisited-page.html">unvisited</a>
  22. </div>
  23. <div class="row row3">
  24. <a href="unvisited-page.html">unvisited</a>
  25. <a href="visited-page.html">visited</a>
  26. </div>
  27. </div>