blob: b6d2449e890b31a9fc50712422c0dbca5e3e33a0 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
|
<!DOCTYPE html>
<title>CSS Test (Display): <slot> elements should be focusable</title>
<link rel="author" title="L. David Baron" href="https://dbaron.org/">
<link rel="author" title="Google" href="http://www.google.com/">
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#flow-content-3">
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/2632">
<link rel="help" href="https://github.com/whatwg/html/issues/1837">
<link rel="help" href="https://github.com/whatwg/html/pull/9425">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1366037">
<!--
This requirement is not particularly clear from current specs,
so this test is tentative. See issues above.
-->
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<script>
function do_test(slot_style, description) {
test(
function() {
let host = document.createElement("div");
document.body.appendChild(host);
var root = host.attachShadow({mode:"open"});
root.innerHTML = `
<style>
slot { --test-value: slot-not-focused; }
slot:focus { --test-value: slot-is-focused; }
</style>
<slot tabindex="1" style="${slot_style}"></slot>
`;
let slot = root.querySelector("slot");
let cs = getComputedStyle(slot);
assert_not_equals(root.activeElement, slot, "precondition");
assert_equals(cs.getPropertyValue("--test-value"), "slot-not-focused", "precondition (style)");
slot.focus();
assert_equals(root.activeElement, slot, "slot is now focused");
assert_equals(cs.getPropertyValue("--test-value"), "slot-is-focused", "slot is now focused (style)");
document.body.removeChild(host);
}, `slot element with ${description} should be focusable`);
}
do_test("display: block", "display: block");
do_test("", "default style");
</script>
|