-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDemo_complex_widget.html
61 lines (56 loc) · 1.14 KB
/
Demo_complex_widget.html
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
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="Zh_CN">
<head>
<title>标题<h>的测试</title>
<link rel="stylesheet" href="css/demo/demo_1.css">
</head>
<body>
<span tabindex="0" id="button" role="combobox"
aria-expanded="false" aria-autocomplete="list" aria-owns="menu"
aria-haspopup="true" aria-activedescendant="option-1"
aria-labelledby="option-1" aria-disabled="false">
One
</span>
<ul aria-hidden="true" aria-labelledby="button" id="menu"
role="listbox" tabindex="0" aria-activedescendant="option-1"
style="display: none;">
<li id="option-1" role="option" tabindex="-1">One</li>
<li id="option-2" role="option" tabindex="-1">Two</li>
<li id="option-3" role="option" tabindex="-1">Three</li>
</ul>
<br/>
<hr/>
<table id="test">
<tr>
<td></td>
<td>NVDA</td>
<td>VoiceOver</td>
</tr>
<tr>
<td>FF</td>
<td></td>
<td></td>
</tr>
<tr>
<td>Chrome</td>
<td></td>
<td></td>
</tr>
<tr>
<td>IE</td>
<td></td>
<td></td>
</tr>
<tr>
<td>EDGE</td>
<td></td>
<td></td>
</tr>
<tr>
<td>Safari</td>
<td></td>
<td></td>
</tr>
</table>
</body>
</html>