Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(463)

Unified Diff: third_party/WebKit/LayoutTests/accessibility/table-with-grid-roles.html

Issue 2825803002: Expose internal treegrid role, do some cleanup for table/grid/treegrid handling (Closed)
Patch Set: Fix mac tests Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698