summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-anchor-position/anchor-typed-om.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-anchor-position/anchor-typed-om.html')
-rw-r--r--testing/web-platform/tests/css/css-anchor-position/anchor-typed-om.html55
1 files changed, 55 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-anchor-position/anchor-typed-om.html b/testing/web-platform/tests/css/css-anchor-position/anchor-typed-om.html
new file mode 100644
index 0000000000..d4fec49dd3
--- /dev/null
+++ b/testing/web-platform/tests/css/css-anchor-position/anchor-typed-om.html
@@ -0,0 +1,55 @@
+<!DOCTYPE html>
+<title>CSS Anchor Positioning Test: anchor()/anchor-size() functions in CSS Typed OM</title>
+<link rel="help" href="https://drafts.csswg.org/css-anchor-position-1/">
+<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/9598">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<style>
+ #cb {
+ position: relative;
+ width: 100px;
+ height: 100px;
+ border: 1px solid black;
+ }
+ #anchor {
+ position: absolute;
+ left: 10px;
+ top: 10px;
+ width: 20px;
+ height: 20px;
+ background: coral;
+ anchor-name: --a;
+ }
+ #target {
+ position: absolute;
+ background: skyblue;
+ position-anchor: --a;
+ left: anchor(right);
+ top: calc(anchor(bottom) + 5px);
+ width: anchor-size(--unknown width, 25px);
+ height: calc(anchor-size(height) * 2);
+ }
+</style>
+
+<div id=cb>
+ <div id=anchor></div>
+ <div id=target></div>
+</div>
+<script>
+ function assert_unit_value(actual, expected) {
+ assert_true(actual instanceof CSSUnitValue);
+ assert_true(expected instanceof CSSUnitValue);
+ assert_equals(actual.value, expected.value);
+ assert_equals(actual.unit, expected.unit);
+ }
+
+ test(() => {
+ assert_unit_value(target.computedStyleMap().get('left'), CSS.px(30));
+ assert_unit_value(target.computedStyleMap().get('top'), CSS.px(35));
+ }, 'anchor() computes to pixels');
+
+ test(() => {
+ assert_unit_value(target.computedStyleMap().get('width'), CSS.px(25));
+ assert_unit_value(target.computedStyleMap().get('height'), CSS.px(40));
+ }, 'anchor-size() computes to pixels');
+</script>