blob: f08915bed22d2eba95474174132b085fa64fe55f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>A <div> with role="grid" and a child div with role="rowgroup" who has a child of role="button".</title>
</head>
<body>
<div id="test" role="grid">
<div id="gridChild" role="rowgroup">
<span id="rowgroupChild" role="button">Grid <abbr title="containing">→</abbr> rowgroup <abbr title="containing">→</abbr> button</span>
</div>
</div>
</body>
</html>
|