Index: third_party/WebKit/LayoutTests/fast/forms/calendar-picker/month-picker-ax.html |
diff --git a/third_party/WebKit/LayoutTests/fast/forms/calendar-picker/month-picker-ax.html b/third_party/WebKit/LayoutTests/fast/forms/calendar-picker/month-picker-ax.html |
index b38a17b8c8968d26a27bf0d8089b230edf31e24d..1b6449297154854b08a56ec02975b77f7f3b5c8b 100644 |
--- a/third_party/WebKit/LayoutTests/fast/forms/calendar-picker/month-picker-ax.html |
+++ b/third_party/WebKit/LayoutTests/fast/forms/calendar-picker/month-picker-ax.html |
@@ -14,7 +14,7 @@ description('Tests if typing an arrow key dispatches |Focus| and |ActiveDescenda |
window.accessibilityController.setNotificationListener(function(axnode, type) { |
if (type == 'Focus') { |
// Remove ',' to reduce platform differences. |
- debug('Focused: ' + escapeHTML(accessibilityController.focusedElement.deprecatedDescription.replace(/,/g, ''))); |
+ debug('Focused: ' + escapeHTML(accessibilityController.focusedElement.name.replace(/,/g, ''))); |
} else if (type == 'ActiveDescendantChanged') { |
testPassed('Received ActiveDescendantChanged'); |
if (++activeDescendantCounter == 2) |