-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
49 lines (43 loc) · 1.25 KB
/
index.htm
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>
<html lang="en">
<head>
<title>
</title>
<link rel="stylesheet" href="style.css">
<script src="script.js">
</script>
</head>
<body>
<button id="b1" type="button" aria-expanded="false" aria-haspopup="true" aria-controls="s1">
Search
</button>
<div id="s1" role="search">
<div role="tablist">
<a id="t1" href="#tp1" aria-selected="true" role="tab">
Basic Search
</a>
<a id="t2" href="#tp2" aria-selected="false" role="tab">
Advanced Search
</a>
</div>
<div aria-labelledby="t1" role="tabpanel" id="tp1">
<input type="search" id="i1" role="combobox" aria-controls="l1" aria-haspopup="listbox" aria-labelledby="b2">
<ul id="l1" aria-label="search history" role="listbox">
<li role="option">search history 1</li>
<li role="option">search history 2</li>
<li role="option">search history 3</li>
<li role="option">search history 4</li>
<li role="option">search history 5</li>
<li role="option">search history 6</li>
<li role="option">search history 7</li>
<li role="option">search history 8</li>
<li role="option">search history 9</li>
<li role="option">search history 10</li>
</ul>
<button id="b2" type="button">search</button>
</div>
<div aria-labelledby="t2" role="tabpanel" id="tp2">
</div>
</div>
</body>
</html>