summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-supported-inherited/rowheader-aria-selected-undefined.html
blob: 439abbb05a69f44ce9eb6a6e74067c080fed9ce4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      <title>&lt;div&gt; with role rowheader; inherited supported state or property "aria-selected" value
         of "undefined"
      </title>
   </head>
   <body>
      <div role="grid">
        <div role="row">
          <span id="test" role="rowheader" aria-selected="undefined" tabindex="0">Placeholder content</span>
          <span role="gridcell" id="obj1">obj1</span>
          <span role="gridcell" id="obj2">obj2</span>
        </div>
        <div role="row">
          <span role="rowheader">header cell 2</span>
          <span role="gridcell">obj1</span>
          <span role="gridcell">obj2</span>
        </div>
      </div>
   </body>
</html>