layout/reftests/border-radius/table-collapse-1.html
author Paul Adenot <paul@paul.cx>
Tue, 15 Jul 2025 08:36:21 +0000 (11 hours ago)
changeset 796624 8b4dd515e78c642a9744dfd44f2f78fc59439587
parent 52297 c1cc7b565dc740206b5b46b613f99da334195329
permissions -rw-r--r--
Bug 1838735 - Change NS_WARNING to MOZ_LOG for real-time limit warning in CubebUtils. r=media-playback-reviewers,karlt Differential Revision: https://phabricator.services.mozilla.com/D257222
<!doctype html>
<html><head>
<title>Table border collapse</title>
<style>
table {
  border: 2px solid black;
  border-collapse: collapse;
}

td {
  border: 2px solid black;
  width: 50px;
  height: 50px;
  border-radius: 4px;
}

</style>
</head>
<body>
  <table>
    <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
    <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
    <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
  </table>
</body></html>