summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-anchor-position/position-fallback-bounds-005.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-anchor-position/position-fallback-bounds-005.html')
-rw-r--r--testing/web-platform/tests/css/css-anchor-position/position-fallback-bounds-005.html76
1 files changed, 0 insertions, 76 deletions
diff --git a/testing/web-platform/tests/css/css-anchor-position/position-fallback-bounds-005.html b/testing/web-platform/tests/css/css-anchor-position/position-fallback-bounds-005.html
deleted file mode 100644
index fecd4328a5..0000000000
--- a/testing/web-platform/tests/css/css-anchor-position/position-fallback-bounds-005.html
+++ /dev/null
@@ -1,76 +0,0 @@
-<!DOCTYPE html>
-<title>Tests relayout after 'position-fallback-bounds' change</title>
-<link rel="help" href="https://drafts.csswg.org/css-anchor-position-1/#fallback-bounds">
-<link rel="author" href="mailto:xiaochengh@chromium.org">
-<script src="/resources/testharness.js"></script>
-<script src="/resources/testharnessreport.js"></script>
-<script src="support/test-common.js"></script>
-
-<style>
-.bounds {
- position: absolute;
- left: 100px;
- width: 200px;
- height: 200px;
- background: gray;
- opacity: 0.1;
-}
-
-#bounds1 {
- top: 0;
- anchor-name: --bounds1;
-}
-
-#bounds2 {
- top: 300px;
- anchor-name: --bounds2;
-}
-
-#anchor {
- position: absolute;
- width: 100px;
- height: 100px;
- background: orange;
- left: 150px;
- top: 200px;
- anchor-name: --a;
-}
-
-#target {
- position: fixed;
- width: 100px;
- height: 100px;
- background: lime;
- left: anchor(left);
- bottom: anchor(top);
- anchor-default: --a;
- position-try-options: --bottom;
- position-fallback-bounds: --bounds1;
-}
-
-@position-try --bottom {
- bottom: auto;
- top: anchor(bottom);
-}
-</style>
-
-<div class="bounds" id="bounds1"></div>
-<div class="bounds" id="bounds2"></div>
-<div id="anchor"></div>
-<div id="target"></div>
-
-<script>
-test(() => {
- assert_fallback_position(target, anchor, 'top');
-}, 'Initial layout');
-
-test(() => {
- target.style = 'position-fallback-bounds: --bounds2';
- assert_fallback_position(target, anchor, 'bottom');
-}, 'Layout is updated after position-fallback-bounds property changes');
-
-test(() => {
- bounds2.style = 'top: 0; height: 500px';
- assert_fallback_position(target, anchor, 'top');
-}, 'Layout is updated after additional fallback-bounds rect changes');
-</script>