summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/dom/elements/global-attributes/the-anchor-attribute-003-crash.tentative.html
blob: 207275d9db01eb43bb630f91bbb76cc109349490 (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
<!DOCTYPE html>
<title>Tests that using the `anchor` attribute with inline containing block does not crash</title>
<link rel="help" href="https://github.com/whatwg/html/pull/9144">
<link rel="help" href="https://crbug.com/1486148">
<link rel="author" href="mailto:xiaochengh@chromium.org">

<style>
.target {
  position: absolute;
  top: anchor(top);
  left: anchor(right);
}
</style>

<div id="anchor">foo</div>

<span style="position: relative">
  <div anchor="anchor2" class="target">bar</div>
</span>

<span style="position: sticky">
  <div anchor="anchor2" class="target">bar</div>
</span>

<span style="backdrop-filter: blur(1px)">
  <div anchor="anchor2" class="target">bar</div>
</span>