fix test case 184 to be properly formed grid
authorRichard Schwerdtfeger <schwer@us.ibm.com>
Mon, 04 Mar 2013 11:52:11 -0600
changeset 126 0515040afa47
parent 125 a9be7570a135
child 127 96d9d5c4adde
fix test case 184 to be properly formed grid
ARIA/1.0/tests/test-files/roles-properties-supported/roles-properties-supported-gridcell-aria-readonly-false.html
--- a/ARIA/1.0/tests/test-files/roles-properties-supported/roles-properties-supported-gridcell-aria-readonly-false.html	Mon Mar 04 11:44:13 2013 -0600
+++ b/ARIA/1.0/tests/test-files/roles-properties-supported/roles-properties-supported-gridcell-aria-readonly-false.html	Mon Mar 04 11:52:11 2013 -0600
@@ -6,8 +6,12 @@
       <title>&lt;div&gt; with role gridcell; supported state or property "aria-readonly" value of "false"</title>
    </head>
    <body>
-      <div id="test" role="gridcell" aria-readonly="false">Placeholder content</div>
-      <div id="obj1">obj1</div>
-      <div id="obj2">obj2</div>
+      <div role="grid">
+         <div role="row">
+            <div id="test" role="gridcell" aria-readonly="false">Placeholder content</div>
+            <div id="obj1" role="gridcell">obj1</div>
+            <div id="obj2" role="gridcell">obj2</div>
+         </div>
+      </div>
    </body>
-</html>
\ No newline at end of file
+</html>