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

Unified Diff: third_party/WebKit/LayoutTests/accessibility/aria-option-role.html

Issue 1417213006: Switch all LayoutTests to use new AX name calculation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix canvas-fallback-content-labels-expected.txt Created 5 years, 1 month 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/aria-option-role.html
diff --git a/third_party/WebKit/LayoutTests/accessibility/aria-option-role.html b/third_party/WebKit/LayoutTests/accessibility/aria-option-role.html
index 0fb65ab0c171dcd75fdb529d9a67924a39da424d..139f0744a4790fe8eb9b850df7f74a7c9bfa7153 100644
--- a/third_party/WebKit/LayoutTests/accessibility/aria-option-role.html
+++ b/third_party/WebKit/LayoutTests/accessibility/aria-option-role.html
@@ -26,10 +26,10 @@
var firstChild = listBox.childAtIndex(0);
var secondChild = listBox.childAtIndex(1);
debug("firstChild.role is " + firstChild.role);
- shouldBe("firstChild.deprecatedTitle", "'AXTitle: option 1'");
+ shouldBe("firstChild.name", "'option 1'");
debug("secondChild.role is " + secondChild.role);
- shouldBe("secondChild.deprecatedDescription", "'AXDescription: label 2'");
+ shouldBe("secondChild.name", "'label 2'");
shouldBe("firstChild.childrenCount", "0");
shouldBe("secondChild.childrenCount", "0");

Powered by Google App Engine
This is Rietveld 408576698