Index: third_party/WebKit/LayoutTests/fast/forms/calendar-picker/week-picker-ax.html |
diff --git a/third_party/WebKit/LayoutTests/fast/forms/calendar-picker/week-picker-ax.html b/third_party/WebKit/LayoutTests/fast/forms/calendar-picker/week-picker-ax.html |
index 3dcfee03124c72837acd209e8db795646c39b898..dd13df7de7131bbcc0da5dbc6b5d71894fdcc0e1 100644 |
--- a/third_party/WebKit/LayoutTests/fast/forms/calendar-picker/week-picker-ax.html |
+++ b/third_party/WebKit/LayoutTests/fast/forms/calendar-picker/week-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) |