summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-tables/bounding-box-computation-1.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 /testing/web-platform/tests/css/css-tables/bounding-box-computation-1.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 'testing/web-platform/tests/css/css-tables/bounding-box-computation-1.html')
-rw-r--r--testing/web-platform/tests/css/css-tables/bounding-box-computation-1.html96
1 files changed, 96 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-tables/bounding-box-computation-1.html b/testing/web-platform/tests/css/css-tables/bounding-box-computation-1.html
new file mode 100644
index 0000000000..4173f399bd
--- /dev/null
+++ b/testing/web-platform/tests/css/css-tables/bounding-box-computation-1.html
@@ -0,0 +1,96 @@
+<!doctype html>
+<script src='/resources/testharness.js'></script>
+<script src='/resources/testharnessreport.js'></script>
+<link rel='stylesheet' href='./support/base.css' />
+<link rel="help" href="https://drafts.csswg.org/css-tables-3/#bounding-box-assignment">
+<main>
+
+ <h1>Bounding box computation</h1>
+ <p>Checks that all table-internal boxes are positioned correctly</p>
+
+ <hr/>
+ <p>The all table-internal elements of this table shoud be 100px and 100px wide tall:</p>
+ <p>Table size is 120px. There are two 10px border-spacing, one at each side.</p>
+ <x-table style="width: 120px; height: 120px; border-spacing: 10px; background: yellow;">
+ <x-colgroup><x-col></x-col></x-colgroup>
+ <x-tbody>
+ <x-tr>
+ <x-td style="padding: 0; background: blue;"></x-td>
+ </x-tr>
+ </x-tbody>
+ </x-table>
+
+</main>
+
+<script>
+ while(true) {
+ var xtd = document.querySelector('x-td[rowspan], x-td[colspan]'); if(!xtd) break;
+ var td = document.createElement('td'); for(var i = xtd.attributes.length; i--;) { td.setAttribute(xtd.attributes[i].name,xtd.attributes[i].value) }
+ xtd.parentNode.replaceChild(td,xtd);
+ }
+
+ var i = 1;
+ generate_tests(assert_equals, [
+ [
+ "Control test: Table width is 120px",
+ document.querySelector("x-table:nth-of-type("+(i++)+")").offsetWidth,
+ 120
+ ],
+ [
+ "Control test: Table height is 120px",
+ document.querySelector("x-table:nth-of-type("+(i-1)+")").offsetHeight,
+ 120
+ ],
+ [
+ "Table-cell is 100px wide",
+ document.querySelector("x-table:nth-of-type("+(i-1)+") x-td").offsetWidth,
+ 100
+ ],
+ [
+ "Table-cell is 100px tall",
+ document.querySelector("x-table:nth-of-type("+(i-1)+") x-td").offsetHeight,
+ 100
+ ],
+ [
+ "Table-row is 100px wide",
+ document.querySelector("x-table:nth-of-type("+(i-1)+") x-tr").offsetWidth,
+ 100
+ ],
+ [
+ "Table-row is 100px tall",
+ document.querySelector("x-table:nth-of-type("+(i-1)+") x-tr").offsetHeight,
+ 100
+ ],
+ [
+ "Table-row-group is 100px wide",
+ document.querySelector("x-table:nth-of-type("+(i-1)+") x-tbody").offsetWidth,
+ 100
+ ],
+ [
+ "Table-row-group is 100px tall",
+ document.querySelector("x-table:nth-of-type("+(i-1)+") x-tbody").offsetHeight,
+ 100
+ ],
+ [
+ "Table-column is 100px wide",
+ document.querySelector("x-table:nth-of-type("+(i-1)+") x-col").offsetWidth,
+ 100
+ ],
+ [
+ "Table-column is 100px tall",
+ document.querySelector("x-table:nth-of-type("+(i-1)+") x-col").offsetHeight,
+ 100
+ ],
+ [
+ "Table-column-group is 100px wide",
+ document.querySelector("x-table:nth-of-type("+(i-1)+") x-colgroup").offsetWidth,
+ 100
+ ],
+ [
+ "Table-column-group is 100px tall",
+ document.querySelector("x-table:nth-of-type("+(i-1)+") x-colgroup").offsetHeight,
+ 100
+ ],
+ ])
+
+</script>