| Index: third_party/WebKit/LayoutTests/accessibility/table-with-grid-roles.html
|
| diff --git a/third_party/WebKit/LayoutTests/accessibility/table-with-grid-roles.html b/third_party/WebKit/LayoutTests/accessibility/table-with-grid-roles.html
|
| index 05da39422b51a5ef29c2cf78ab5a07efe83a67ea..7bc2366e08344ffdb67c1469f7f2da7cd726acd1 100644
|
| --- a/third_party/WebKit/LayoutTests/accessibility/table-with-grid-roles.html
|
| +++ b/third_party/WebKit/LayoutTests/accessibility/table-with-grid-roles.html
|
| @@ -36,7 +36,7 @@
|
| <script>
|
| test(function(t) {
|
| var axTable = accessibilityController.accessibleElementById('table1');
|
| - assert_equals(axTable.role, "AXRole: AXTable");
|
| + assert_equals(axTable.role, "AXRole: AXGrid");
|
|
|
| assert_equals(axTable.rowCount, 2);
|
| assert_equals(axTable.columnCount, 2);
|
| @@ -44,7 +44,7 @@ test(function(t) {
|
|
|
| test(function(t) {
|
| var axTable = accessibilityController.accessibleElementById('table2');
|
| - assert_equals(axTable.role, "AXRole: AXTable");
|
| + assert_equals(axTable.role, "AXRole: AXGrid");
|
|
|
| assert_equals(axTable.rowCount, 2);
|
| assert_equals(axTable.columnCount, 2);
|
| @@ -52,7 +52,7 @@ test(function(t) {
|
|
|
| test(function(t) {
|
| var axTable = accessibilityController.accessibleElementById('table3');
|
| - assert_equals(axTable.role, "AXRole: AXTable");
|
| + assert_equals(axTable.role, "AXRole: AXGrid");
|
|
|
| assert_equals(axTable.rowCount, 2);
|
| assert_equals(axTable.columnCount, 2);
|
|
|