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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/calendar-picker/date-picker-ax.html

Issue 1417213006: Switch all LayoutTests to use new AX name calculation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix canvas-fallback-content-labels-expected.txt 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/fast/forms/calendar-picker/date-picker-ax.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/calendar-picker/date-picker-ax.html b/third_party/WebKit/LayoutTests/fast/forms/calendar-picker/date-picker-ax.html
index a7c0e590339e45d8284449e60ef90652bb88e9f0..b5aad1632a49df669d3ee83b4eebd61aad612800 100644
--- a/third_party/WebKit/LayoutTests/fast/forms/calendar-picker/date-picker-ax.html
+++ b/third_party/WebKit/LayoutTests/fast/forms/calendar-picker/date-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) {

Powered by Google App Engine
This is Rietveld 408576698