tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 8d3c9c1153ee9a8c804b0c0291e31c944dc2abe5
parent 9ded204d1de955c52f2af8b99773bb875b2962de
Author: Emilio Cobos Álvarez <emilio@crisal.io>
Date:   Sat,  3 Jan 2026 15:28:02 +0000

Bug 1424656 - Add a WPT test for this bug. r=layout-reviewers,TYLin

This can land once bug 2008148 lands (and maybe has been on the tree for
a week or so, because it's non-trivial).

Differential Revision: https://phabricator.services.mozilla.com/D277783

Diffstat:
Atesting/web-platform/tests/css/css-tables/iframe-display-table-content-insertion-ref.html | 3+++
Atesting/web-platform/tests/css/css-tables/iframe-display-table-content-insertion.html | 11+++++++++++
2 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/testing/web-platform/tests/css/css-tables/iframe-display-table-content-insertion-ref.html b/testing/web-platform/tests/css/css-tables/iframe-display-table-content-insertion-ref.html @@ -0,0 +1,3 @@ +<!doctype html> +<div><span>This text should be before the iframe</span><iframe + id=f style="display: table-column-group"></iframe></div> diff --git a/testing/web-platform/tests/css/css-tables/iframe-display-table-content-insertion.html b/testing/web-platform/tests/css/css-tables/iframe-display-table-content-insertion.html @@ -0,0 +1,11 @@ +<!doctype html> +<link rel="help" href="https://drafts.csswg.org/css-tables/#content-model"> +<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1424656"> +<link rel="match" href="iframe-display-table-content-insertion-ref.html"> +<div><iframe + id=f style="display: table-column-group"></iframe><script> + document.body.offsetWidth; + var span = document.createElement("span"); + span.textContent = "This text should be before the iframe"; + f.before(span); +</script></div>