blob: 3ea26c896e9179cad79b711f38c8bb1186ea484f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<!DOCTYPE html>
<meta charset="utf-8">
<meta name="assert" content="position-visibility: anchors-visible should work with a fixed-position anchored element." />
<title>CSS Anchor Positioning Test: position-visibility: anchors-visible</title>
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/7758">
<link rel="match" href="position-visibility-anchors-visible-both-position-fixed-ref.html">
<style>
#anchor {
anchor-name: --a1;
position: fixed;
top: -100px;
left: 0;
width: 100px;
height: 100px;
background: orange;
}
#target {
position-anchor: --a1;
position-visibility: anchors-visible;
inset-area: bottom right;
width: 100px;
height: 100px;
background: red;
position: fixed;
top: 0;
left: 0;
}
#spacer {
height: 200vh;
}
</style>
<!-- Test passes if #target is not visible, due to #anchor being off-screen. -->
<div id="anchor">anchor</div>
<div id="target">target</div>
<div id="spacer"></div>
|