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

Unified Diff: LayoutTests/fast/forms/datetimelocal-multiple-fields/datetimelocal-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/datetimelocal-multiple-fields/datetimelocal-multiple-fields-ax-value-changed-notification.html
diff --git a/LayoutTests/fast/forms/datetimelocal-multiple-fields/datetimelocal-multiple-fields-ax-value-changed-notification.html b/LayoutTests/fast/forms/datetimelocal-multiple-fields/datetimelocal-multiple-fields-ax-value-changed-notification.html
index 80d98d8964a64bcffade7d46d43742f2ecc6e27e..40055cf7a563a39b29d5d6677ce30131ac3b9e4c 100644
--- a/LayoutTests/fast/forms/datetimelocal-multiple-fields/datetimelocal-multiple-fields-ax-value-changed-notification.html
+++ b/LayoutTests/fast/forms/datetimelocal-multiple-fields/datetimelocal-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