-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathcontent-visibility-053.html
More file actions
30 lines (25 loc) · 1.02 KB
/
content-visibility-053.html
File metadata and controls
30 lines (25 loc) · 1.02 KB
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
<html>
<meta charset="utf8">
<title>Content Visibility: focus on display none element</title>
<link rel="author" title="Rakina Zata Amni" href="mailto:rakina@chromium.org">
<link rel="help" href="https://un5n798jx6qx6j0rmf2verhh.julianrbryant.com/css-contain/#content-visibility">
<meta name="assert" content="tab navigation skips display none elements in an auto subtree">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=spacer style="height: 3000px"></div>
<div id="host">
<input id="slotted" type="text">
</div>
<script>
test(() => {
const container = document.createElement("div");
container.innerHTML = "<slot></slot>";
container.style = "content-visibility: auto";
const shadowRoot = host.attachShadow({ mode: "open" });
shadowRoot.appendChild(container);
assert_not_equals(document.activeElement, slotted);
slotted.focus();
assert_equals(document.activeElement, slotted);
}, "Targetting a slotted auto-hidden element with focus makes it the active element");
</script>
</html>