summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/contain-size-inline-block-004-ref.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-contain/contain-size-inline-block-004-ref.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-contain/contain-size-inline-block-004-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-contain/contain-size-inline-block-004-ref.html55
1 files changed, 55 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-contain/contain-size-inline-block-004-ref.html b/testing/web-platform/tests/css/css-contain/contain-size-inline-block-004-ref.html
new file mode 100644
index 0000000000..e7f03ff2d3
--- /dev/null
+++ b/testing/web-platform/tests/css/css-contain/contain-size-inline-block-004-ref.html
@@ -0,0 +1,55 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+ <meta charset="utf-8">
+ <title>CSS Reftest Reference</title>
+ <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
+ <link rel="author" title="Morgan Rae Reschenberg" href="mailto:mreschenberg@berkeley.edu">
+ <style>
+ .basic {
+ display: inline-block;
+ overflow: hidden;
+ position: relative;
+ border: 2px solid green;
+ }
+ .height-ref {
+ height: 60px;
+ }
+ .width-ref {
+ width: 60px;
+ }
+ .innerContents {
+ color: transparent;
+ height: 100px;
+ width: 100px;
+ position: absolute;
+ }
+ </style>
+</head>
+<body>
+ <!-- NOTE: In the reference-case scenarios here, we use the same DOM as in
+ the testcase, and we simply use 'position: absolute' on the descendants
+ wherever the testcase has 'contain: size' on the container. This
+ produces an accurate reference rendering, because out-of-flow content
+ doesn't contribute to the container's sizing, but does create scrollable
+ overflow. -->
+ <div class="basic"><div class="innerContents">inner</div></div>
+ <br>
+
+ outside before
+ <div class="basic"><div class="innerContents">inner</div></div>
+ outside after
+ <br>
+
+ <div class="basic height-ref"><div class="innerContents">inner</div></div>
+ <br>
+
+ <div class="basic height-ref"><div class="innerContents">inner</div></div>
+ <br>
+
+ <div class="basic width-ref"><div class="innerContents">inner</div></div>
+ <br>
+
+ <div class="basic width-ref"><div class="innerContents">inner</div></div>
+</body>
+</html>