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

Unified Diff: third_party/WebKit/LayoutTests/accessibility/menu-list-open.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-open.html
diff --git a/third_party/WebKit/LayoutTests/accessibility/menu-list-open.html b/third_party/WebKit/LayoutTests/accessibility/menu-list-open.html
index 1424f79150a963449e39ead7d6c82d4d44007dd7..15ce9c86e42df67f563e940172a76f1c63a8d263 100644
--- a/third_party/WebKit/LayoutTests/accessibility/menu-list-open.html
+++ b/third_party/WebKit/LayoutTests/accessibility/menu-list-open.html
@@ -17,7 +17,7 @@ async_test(function(t)
accessibilityController.addNotificationListener(function listener(element, notification) {
if (notification == "Focus") {
assert_equals(element.role, "AXRole: AXMenuListOption");
- assert_equals(element.stringValue, "AXValue: Alicia");
+ assert_equals(element.name, "Alicia");
t.done();
}
});

Powered by Google App Engine
This is Rietveld 408576698