fix test case 186 to ensure gridcell is in the context of an actual grid
authorRichard Schwerdtfeger <schwer@us.ibm.com>
Sun, 03 Feb 2013 13:01:58 -0600
changeset 93 8feb3e3b3842
parent 92 d671115a5655
child 94 46c45b0137e5
fix test case 186 to ensure gridcell is in the context of an actual grid
ARIA/1.0/tests/test-files/roles-properties-supported/roles-properties-supported-gridcell-aria-required-false.html
--- a/ARIA/1.0/tests/test-files/roles-properties-supported/roles-properties-supported-gridcell-aria-required-false.html	Sun Feb 03 12:57:18 2013 -0600
+++ b/ARIA/1.0/tests/test-files/roles-properties-supported/roles-properties-supported-gridcell-aria-required-false.html	Sun Feb 03 13:01:58 2013 -0600
@@ -6,8 +6,10 @@
       <title>&lt;div&gt; with role gridcell; supported state or property "aria-required" value of "false"</title>
    </head>
    <body>
-      <div id="test" role="gridcell" aria-required="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-required="false">Placeholder content</div>
+           </div>
+       </div>
    </body>
-</html>
\ No newline at end of file
+</html>