summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-anchor-position/anchor-position-multicol-006.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-anchor-position/anchor-position-multicol-006.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-anchor-position/anchor-position-multicol-006.html')
-rw-r--r--testing/web-platform/tests/css/css-anchor-position/anchor-position-multicol-006.html72
1 files changed, 72 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-anchor-position/anchor-position-multicol-006.html b/testing/web-platform/tests/css/css-anchor-position/anchor-position-multicol-006.html
new file mode 100644
index 0000000000..93d4ac6598
--- /dev/null
+++ b/testing/web-platform/tests/css/css-anchor-position/anchor-position-multicol-006.html
@@ -0,0 +1,72 @@
+<!DOCTYPE html>
+<title>Tests two OOF anchors in different containing blocks in multicol.</title>
+<link rel="help" href="https://drafts.csswg.org/css-anchor-1/#propdef-anchor-name">
+<link rel="help" href="https://drafts.csswg.org/css-anchor-1/#anchor-pos">
+<link rel="help" href="https://drafts.csswg.org/css-anchor-1/#anchor-size">
+<link rel="author" href="mailto:kojii@chromium.org">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="/resources/check-layout-th.js"></script>
+<script src="support/test-common.js"></script>
+<style>
+.relpos {
+ position: relative;
+}
+.columns {
+ column-count: 3;
+ column-fill: auto;
+ column-gap: 10px;
+ column-width: 100px;
+ width: 320px;
+ height: 50px;
+}
+.anchor1 {
+ anchor-name: --a1;
+ position: absolute;
+ width: 10px;
+ height: 30px;
+ background: orange;
+}
+.anchor2 {
+ anchor-name: --a2;
+ position: absolute;
+ width: 30px;
+ height: 30px;
+ background: purple;
+}
+.target {
+ position: absolute;
+ width: 5px;
+ background: lime;
+}
+.target1 {
+ left: anchor(--a1 left);
+ top: anchor(--a1 top);
+ height: anchor-size(--a1 height);
+}
+.target2 {
+ left: anchor(--a2 left);
+ top: anchor(--a2 top);
+ height: anchor-size(--a2 height);
+}
+</style>
+<body onload="checkLayoutForAnchorPos('.target')">
+ <div class="spacer" style="height: 10px"></div>
+ <div class="relpos">
+ <div class="columns">
+ <div class="relpos">
+ <div class="spacer" style="height: 30px"></div>
+ <div class="anchor1"></div>
+ </div>
+ <div class="spacer" style="height: 70px"></div>
+ <div class="relpos">
+ <div class="spacer" style="height: 10px"></div>
+ <div class="anchor2"></div>
+ </div>
+ <div class="target target1" data-expected-height=50></div>
+ <div class="target target2" data-expected-height=30></div>
+ </div>
+ <div class="target target1" data-expected-height=50></div>
+ <div class="target target2" data-expected-height=30></div>
+ </div>
+</body>