summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-width/default-box-sizing-collapse-quirks.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
commit2aa4a82499d4becd2284cdb482213d541b8804dd (patch)
treeb80bf8bf13c3766139fbacc530efd0dd9d54394c /layout/reftests/table-width/default-box-sizing-collapse-quirks.html
parentInitial commit. (diff)
downloadfirefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz
firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--layout/reftests/table-width/default-box-sizing-collapse-quirks.html47
1 files changed, 47 insertions, 0 deletions
diff --git a/layout/reftests/table-width/default-box-sizing-collapse-quirks.html b/layout/reftests/table-width/default-box-sizing-collapse-quirks.html
new file mode 100644
index 0000000000..59ff974ee1
--- /dev/null
+++ b/layout/reftests/table-width/default-box-sizing-collapse-quirks.html
@@ -0,0 +1,47 @@
+<html>
+<head>
+<title>default box sizing (border-collapse: separate, standards mode)</title>
+<style type="text/css">
+
+body > div { float: left; clear: left; background: fuchsia; margin: 2px 0; padding: 10px; }
+
+table {
+ border-collapse: collapse;
+ border-spacing: 5px 3px;
+ padding: 2px 3px 4px 5px;
+ border: medium solid blue;
+ border-width: 2px 4px 6px 8px;
+}
+
+td {
+ border: medium solid aqua;
+ border-width: 2px 4px 6px 8px;
+ padding: 5px 7px 9px 11px;
+}
+
+td > div {
+ background: yellow;
+}
+
+</style>
+</head>
+<body>
+
+<div>
+ <table width="200">
+ <tr>
+ <td><div>x</div></td>
+ </tr>
+ </table>
+</div>
+
+<div>
+ <table>
+ <tr>
+ <td width="200"><div>x</div></td>
+ </tr>
+ </table>
+</div>
+
+</body>
+</html>