summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-supported/roles-properties-supported-rowheader-aria-sort-other.html
blob: 6ed7626aa48c8c9e32b78937653ec540cd804a88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      <title>&lt;div&gt; with role rowheader; supported state or property "aria-sort" value of "other"</title>
   </head>
   <body>
      <div role="grid">
         <div role="row">
            <span id="test" role="rowheader" aria-sort="other">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>