summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-width/percent-basis.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /layout/reftests/table-width/percent-basis.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/table-width/percent-basis.html')
-rw-r--r--layout/reftests/table-width/percent-basis.html64
1 files changed, 64 insertions, 0 deletions
diff --git a/layout/reftests/table-width/percent-basis.html b/layout/reftests/table-width/percent-basis.html
new file mode 100644
index 0000000000..96e91dc999
--- /dev/null
+++ b/layout/reftests/table-width/percent-basis.html
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+<title>basis of percentage widths</title>
+<style type="text/css">
+
+td { border: 3px inset blue; }
+
+</style>
+</head>
+<body>
+
+<!--
+
+ The difference between the border-box width of the table and the width allocated to the columns is:
+
+ 2px = table border-left-width
+ 9px = table padding-left
+ 25px = 5 * table border-spacing-x
+ 5px = table padding-right
+ 2px = table border-left-width
+ =================================
+ 43px
+
+ -->
+
+<table cellpadding="3" cellspacing="5" border="2" style="padding: 3px 5px 7px 9px">
+ <tr>
+ <td width="25%">x</td>
+ <td width="38">x</td>
+ <td><div style="width:38px">x</div></td>
+ <td><div style="width:38px">x</div></td>
+ </tr>
+</table>
+
+<table cellpadding="3" cellspacing="5" border="2" style="padding: 3px 5px 7px 9px" width="243">
+ <tr>
+ <td width="25%">x</td>
+ <td width="38">x</td>
+ <td><div style="width:38px">x</div></td>
+ <td><div style="width:38px">x</div></td>
+ </tr>
+</table>
+
+<table cellpadding="3" cellspacing="5" border="2" style="padding: 3px 5px 7px 9px" width="443">
+ <tr>
+ <td width="25%">x</td>
+ <td width="38">x</td>
+ <td><div style="width:38px">x</div></td>
+ <td><div style="width:38px">x</div></td>
+ </tr>
+</table>
+
+<table cellpadding="3" cellspacing="5" border="2" style="padding: 3px 5px 7px 9px" width="223">
+ <tr>
+ <td width="25%">x</td>
+ <td width="38">x</td>
+ <td><div style="width:38px">x</div></td>
+ <td><div style="width:38px">x</div></td>
+ </tr>
+</table>
+
+</body>
+</html>