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

Unified Diff: third_party/WebKit/LayoutTests/accessibility/menu-list-popup-reuses-objects.html

Issue 1435113003: Make use of new AX name calc in Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix issue with ariaTextAlternative 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/menu-list-popup-reuses-objects.html
diff --git a/third_party/WebKit/LayoutTests/accessibility/menu-list-popup-reuses-objects.html b/third_party/WebKit/LayoutTests/accessibility/menu-list-popup-reuses-objects.html
index 4c0d31e87594d41511a83d934e9f76e7b57640c1..0a0abfe71fc4d3989623b24e53b74f26a1e20169 100644
--- a/third_party/WebKit/LayoutTests/accessibility/menu-list-popup-reuses-objects.html
+++ b/third_party/WebKit/LayoutTests/accessibility/menu-list-popup-reuses-objects.html
@@ -33,7 +33,7 @@ if (window.testRunner && window.accessibilityController) {
accessibilityController.accessibleElementById('foo');
accessibilityController.addNotificationListener(function(element, notification) {
- if (element.stringValue == axMenuListOption.stringValue) {
+ if (element.name == axMenuListOption.name) {
window.element = element;
shouldBe("element.isEqual(axMenuListOption)", "true");
shouldBe("element.parentElement().isEqual(axMenuListPopup)", "true");

Powered by Google App Engine
This is Rietveld 408576698