blob: 9d08854b9a2a5a47ef2d1f543bb594c8e7bfb38f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<html>
<head>
<meta charset="utf-8"/>
<title>Tree Update ARIA Dialog Test</title>
</head>
<body id="body">
<div id="dialog" role="dialog" style="display: none;">
<table id="table" role="presentation"
style="display: block; position: fixed; top: 88px; left: 312.5px; z-index: 10010;">
<tbody>
<tr>
<td role="presentation">
<div role="presentation">
<a id="a" role="button">text</a>
</div>
<input id="input">
</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>
|