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

Unified Diff: LayoutTests/accessibility/aria-label.html

Issue 1086753004: Switch LayoutTests to use renamed methods for deprecated text alternatives (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Re-add linux expectation Created 5 years, 6 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/accessibility/aria-label.html
diff --git a/LayoutTests/accessibility/aria-label.html b/LayoutTests/accessibility/aria-label.html
index ca18b07a4363636968f8c1a68fc9ee3b8416d91b..28edafcde68c4de3996f131f4cd4e74b3cf63dcb 100644
--- a/LayoutTests/accessibility/aria-label.html
+++ b/LayoutTests/accessibility/aria-label.html
@@ -18,11 +18,11 @@
var body = document.getElementById("body");
body.focus();
var obj = accessibilityController.focusedElement.childAtIndex(0).childAtIndex(0);
- var succeeded = obj.description == "AXDescription: aria label";
+ var succeeded = obj.deprecatedDescription == "AXDescription: aria label";
shouldBe("succeeded", "true");
obj = accessibilityController.focusedElement.childAtIndex(0).childAtIndex(1);
- succeeded = obj.description == "AXDescription: aria link";
+ succeeded = obj.deprecatedDescription == "AXDescription: aria link";
shouldBe("succeeded", "true");
}
« no previous file with comments | « LayoutTests/accessibility/aria-hidden-expected.txt ('k') | LayoutTests/accessibility/aria-labelledby-on-input.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698