fune/testing/web-platform/tests/css/css-anchor-position/position-visibility-remove-no-overflow.html
Mason Freed b187bf01c1 Bug 1890447 [wpt PR 45620] - Mark position-visibility tests non-tentative, a=testonly
Automatic update from web-platform-tests
Mark position-visibility tests non-tentative

The spec issue:

https://github.com/w3c/csswg-drafts/issues/7758

was resolved, edits made to the spec, and no objections heard at
CSSWG.

Bug: 40947467
Change-Id: I8ee2510ab3da3b05f800cc50caee60b489446e01
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5436909
Reviewed-by: Philip Rogers <pdr@chromium.org>
Commit-Queue: Mason Freed <masonf@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1285272}

--

wpt-commits: 5baae3e11208b54b1bf11a0e7c67f6abb0cf0651
wpt-pr: 45620
2024-04-19 07:33:53 +00:00

48 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html class=reftest-wait>
<meta charset="utf-8">
<title>CSS Anchor Positioning Test: position-visibility: no-overflow</title>
<link rel="help" href="https://drafts.csswg.org/css-anchor-position-1/#position-visibility">
<link rel="match" href="position-visibility-no-overflow-ref.html">
<style>
#scroll-container {
position: relative;
overflow: hidden scroll;
width: 400px;
height: 100px;
}
.anchor {
width: 100px;
height: 100px;
background: orange;
display: inline-block;
}
.target {
position: absolute;
position-visibility: no-overflow;
inset-area: block-end;
width: 100px;
height: 100px;
background: green;
top: 0;
left: 0;
}
</style>
<div id="scroll-container">
<!-- #target1 should not be visible because it overflows the containing block. -->
<div class="anchor" style="anchor-name: --a1;">anchor1</div>
<div id="target" class="target" style="position-anchor: --a1;">target1</div>
</div>
<script>
requestAnimationFrame(() => {
requestAnimationFrame(() => {
target.style.positionVisibility = 'initial';
document.documentElement.classList.remove('reftest-wait');
});
});
</script>
</html>