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

Unified Diff: LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-ax-value-changed-notification.html

Issue 22331005: Clean up accessibility enums for use in Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add forgotten file back Created 7 years, 4 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: LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-ax-value-changed-notification.html
diff --git a/LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-ax-value-changed-notification.html b/LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-ax-value-changed-notification.html
index 39790a293b512094cf0861007971145d41f6e5bc..2e99769c60130db90e7a972d15c09dffe03f02d1 100644
--- a/LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-ax-value-changed-notification.html
+++ b/LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-ax-value-changed-notification.html
@@ -14,7 +14,7 @@ if (!window.accessibilityController || !window.eventSender)
debug("Please run inside DRT or WRT.");
else {
accessibilityController.addNotificationListener(function (element, notification) {
- if (notification == 'FocusedUIElementChanged' || notification == 'ValueChanged') {
+ if (notification == 'Focus' || notification == 'ValueChanged') {
debug(notification + ' ' + element.helpText + '=' + element.valueDescription);
}
});

Powered by Google App Engine
This is Rietveld 408576698