summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/contain-paint-006.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:47:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:47:29 +0000
commit0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch)
treea31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /testing/web-platform/tests/css/css-contain/contain-paint-006.html
parentInitial commit. (diff)
downloadfirefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz
firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-contain/contain-paint-006.html')
-rw-r--r--testing/web-platform/tests/css/css-contain/contain-paint-006.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-contain/contain-paint-006.html b/testing/web-platform/tests/css/css-contain/contain-paint-006.html
new file mode 100644
index 0000000000..b04a78f998
--- /dev/null
+++ b/testing/web-platform/tests/css/css-contain/contain-paint-006.html
@@ -0,0 +1,24 @@
+<!doctype html>
+<html lang=en>
+ <meta charset=utf-8>
+ <title>CSS-contain test: paint containment on ruby-base-container</title>
+ <link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net">
+ <meta name=flags content="">
+ <meta name=assert content="paint containment does not apply to ruby-base-container">
+ <link rel="match" href="../reference/pass_if_pass_below.html">
+ <link rel=help href="https://drafts.csswg.org/css-contain-1/#containment-paint">
+
+<style>
+rbc {
+ contain: paint;
+ display: ruby-base-container;
+ width: 0; /* Because if the test fails, this may get blockified, and which could make wide enough to hold the PASS */
+}
+rbc::after {
+ content: "PASS";
+ position: absolute;
+}
+</style>
+
+<p>Test passes if there is the word "PASS" below.</p>
+<div><ruby><rbc></rbc></ruby></div>