Wrapped the columnheader with a proper grid/row structure as
authorJoseph Scheuhammer <clown@alum.mit.edu>
Wed, 20 Mar 2013 16:40:04 -0400
changeset 138 090a7e73871d
parent 137 b9e7f7b992d3
child 139 267277878240
Wrapped the columnheader with a proper grid/row structure as
the spec states that columnheaders must be in a row, and a
row must be within a grid.
ARIA/1.0/tests/test-files/roles-properties-supported-inherited/roles-properties-supported-inherited-columnheader-aria-expanded-true.html
--- a/ARIA/1.0/tests/test-files/roles-properties-supported-inherited/roles-properties-supported-inherited-columnheader-aria-expanded-true.html	Mon Mar 18 10:37:57 2013 -0400
+++ b/ARIA/1.0/tests/test-files/roles-properties-supported-inherited/roles-properties-supported-inherited-columnheader-aria-expanded-true.html	Wed Mar 20 16:40:04 2013 -0400
@@ -8,8 +8,12 @@
       </title>
    </head>
    <body>
-      <div id="test" role="columnheader" aria-expanded="true">Placeholder content</div>
-      <div id="obj1">obj1</div>
-      <div id="obj2">obj2</div>
+      <div role="grid">
+        <div role="row">
+          <div id="test" role="columnheader" aria-expanded="true">Placeholder content</div>
+          <div id="obj1">obj1</div>
+          <div id="obj2">obj2</div>
+        </div>
+      </div>
    </body>
 </html>
\ No newline at end of file