summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-anchor-position/position-anchor-003.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-anchor-position/position-anchor-003.html')
-rw-r--r--testing/web-platform/tests/css/css-anchor-position/position-anchor-003.html55
1 files changed, 55 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-anchor-position/position-anchor-003.html b/testing/web-platform/tests/css/css-anchor-position/position-anchor-003.html
new file mode 100644
index 0000000000..6117027e22
--- /dev/null
+++ b/testing/web-platform/tests/css/css-anchor-position/position-anchor-003.html
@@ -0,0 +1,55 @@
+<!DOCTYPE html>
+<title>Tests that layout is updated on position-anchor value changes</title>
+<link rel="help" href="https://drafts4.csswg.org/css-anchor-position-1/#position-anchor">
+<link rel="author" href="mailto:xiaochengh@chromium.org">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+
+<style>
+#target {
+ position: fixed;
+ width: 100px;
+ height: 100px;
+ background: lime;
+ top: anchor(top);
+ left: anchor(right);
+ position-anchor: --a;
+}
+
+#target.after {
+ position-anchor: --b;
+}
+
+#anchor1, #anchor2 {
+ width: 100px;
+ height: 100px;
+ background: orange;
+}
+
+#anchor1 {
+ anchor-name: --a;
+}
+
+#anchor2 {
+ margin-left: 100px;
+ anchor-name: --b;
+}
+
+body {
+ margin: 0;
+}
+</style>
+
+<div id="anchor1"></div>
+<div id="anchor2"></div>
+<div id="target"></div>
+
+<script>
+test(() => {
+ document.body.offsetLeft; // Force layout
+ target.classList.add('after');
+ // #target should be anchored to #anchor2 now
+ assert_equals(target.offsetLeft, 200);
+ assert_equals(target.offsetTop, 100);
+}, 'Layout is updated on `position-anchor` changes');
+</script>