blob: ae966afc76adbb29efb605039ac4db3ba6f87e93 (
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
|
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="/resources/testdriver-actions.js"></script>
<script src="resources/shadow-dom.js"></script>
<script src="resources/focus-utils.js"></script>
<div id="log"></div>
<!--
This test case is based on the crbug.com/618587 reproduction case:
http://jsbin.com/bonudiwagu/1/edit?html,output
-->
<input id='i0'>
<div id='x-foo'>
<template data-mode='open'>
<input id='inner-before'>
<slot></slot>
<input id='inner-after'>
</template>
<div id='nested'>
<template data-mode='open'>
<input id='nested-x'>
<slot></slot>
<input id='nested-y'>
</template>
<input id='light'>
</div>
</div>
<input id='i1'>
<script>
promise_test(async () => {
var xFoo = document.querySelector('#x-foo');
convertTemplatesToShadowRootsWithin(xFoo);
var elements = [
'i0',
'x-foo/inner-before',
'nested/nested-x',
'light',
'nested/nested-y',
'x-foo/inner-after',
'i1'
];
await assert_focus_navigation_bidirectional(elements);
}, 'Focus controller should treat each slot as a focus scope.');
</script>
|