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

Unified Diff: LayoutTests/accessibility/aria-labelledby-overrides-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-labelledby-overrides-label.html
diff --git a/LayoutTests/accessibility/aria-labelledby-overrides-label.html b/LayoutTests/accessibility/aria-labelledby-overrides-label.html
index 435a3c4b08ce2db4f48511ca29c2eb87fd81ac03..5427ae5af88f81222075eedb0f7c54ce2b72b094 100644
--- a/LayoutTests/accessibility/aria-labelledby-overrides-label.html
+++ b/LayoutTests/accessibility/aria-labelledby-overrides-label.html
@@ -22,10 +22,10 @@
text.focus();
text = accessibilityController.focusedElement;
- shouldBe("text.description", "'AXDescription: Shut down computer after 10 minutes'");
+ shouldBe("text.deprecatedDescription", "'AXDescription: Shut down computer after 10 minutes'");
// There should be no title UI element.
- shouldBe("text.titleUIElement() != null && text.titleUIElement().isValid", "false");
+ shouldBe("text.deprecatedTitleUIElement() != null && text.deprecatedTitleUIElement().isValid", "false");
var labelElement = accessibilityController.accessibleElementById("labelElement");
// This just makes sure that the label element is still visible in the AX hierarchy, even though

Powered by Google App Engine
This is Rietveld 408576698