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

Unified Diff: third_party/WebKit/LayoutTests/accessibility/canvas-description-and-role.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/accessibility/canvas-description-and-role.html
diff --git a/third_party/WebKit/LayoutTests/accessibility/canvas-description-and-role.html b/third_party/WebKit/LayoutTests/accessibility/canvas-description-and-role.html
index 82dbcbbb85812db023953724db629748b534bea8..67f105799e03c200e55bf979cd7a8ace79a6da01 100644
--- a/third_party/WebKit/LayoutTests/accessibility/canvas-description-and-role.html
+++ b/third_party/WebKit/LayoutTests/accessibility/canvas-description-and-role.html
@@ -21,11 +21,11 @@ if (window.testRunner && window.accessibilityController) {
shouldBe("axContainer.childrenCount", "2");
var axCanvas1 = axContainer.childAtIndex(0);
- debug('Canvas 1 description: ' + axCanvas1.deprecatedDescription);
+ debug('Canvas 1 description: ' + axCanvas1.name);
debug('Canvas 1 role: ' + axCanvas1.role);
var axCanvas2 = axContainer.childAtIndex(1);
- debug('Canvas 2 description: ' + axCanvas2.deprecatedDescription);
+ debug('Canvas 2 description: ' + axCanvas2.name);
debug('Canvas 2 role: ' + axCanvas2.role);
}

Powered by Google App Engine
This is Rietveld 408576698