diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/css/css-contain/contain-layout-overflow-001.html | |
parent | Initial commit. (diff) | |
download | firefox-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-layout-overflow-001.html')
-rw-r--r-- | testing/web-platform/tests/css/css-contain/contain-layout-overflow-001.html | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-contain/contain-layout-overflow-001.html b/testing/web-platform/tests/css/css-contain/contain-layout-overflow-001.html new file mode 100644 index 0000000000..5bf984e2bf --- /dev/null +++ b/testing/web-platform/tests/css/css-contain/contain-layout-overflow-001.html @@ -0,0 +1,66 @@ + +<!DOCTYPE HTML> +<html> +<head> + <meta charset="utf-8"> + <title>CSS Test: 'contain: layout' should force all overflow to be ink overflow.</title> + <link rel="author" title="Morgan Rae Reschenberg" href="mailto:mreschenberg@berkeley.edu"> + <link rel="help" href="https://drafts.csswg.org/css-contain/#containment-layout"> + <link rel="match" href="contain-layout-overflow-001-ref.html"> + <style> + .contain { + contain: layout; + } + .outer { + height: 100px; + width: 100px; + } + .auto { + overflow: auto; + } + .inner-sm { + height: 50px; + width: 50px; + background: lightblue; + } + .inner-lg { + height: 200px; + width: 200px; + background: lightblue; + } + .pass { + background: green; + } + .fail { + background: red; + } + .border { + border: 5px solid green; + } + </style> +</head> +<body> + <!--CSS Test: Elements with contain:layout that do not produce scrollable overflow should paint as if containment were not applied. --> + <div class="outer"> + <div class="inner-sm contain"></div> + </div> + <br> + + <!--CSS Test: Layout-contained elements that overflow their container and have children who overflow should produce the same amount of scrollable overflow as if there were no children. --> + <div class="outer auto"> + <div class="inner-lg contain"> + <div class="inner-lg pass"></div> + <div class="inner-lg fail"></div> + </div> + </div> + <br> + + <!--CSS Test: Layout-contained elements that do not overflow their container, but have children who overflow, should not allow their children to affect the scrollable overflow regions of their parent. --> + <div class="outer auto"> + <div class="inner-sm contain border"> + <div class="inner-lg"> + </div> + </div> + </div> +</body> +</html> |