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

Unified Diff: LayoutTests/accessibility/aria-labelledby-overrides-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-labelledby-overrides-aria-label.html
diff --git a/LayoutTests/accessibility/aria-labelledby-overrides-aria-label.html b/LayoutTests/accessibility/aria-labelledby-overrides-aria-label.html
index f939165db53233752b3149ffdca42a7ba4dda411..a1b3516ae4b6e217925c72e440fdcd38e9804b2e 100644
--- a/LayoutTests/accessibility/aria-labelledby-overrides-aria-label.html
+++ b/LayoutTests/accessibility/aria-labelledby-overrides-aria-label.html
@@ -34,20 +34,20 @@
if (window.accessibilityController) {
var usingNone = getAccessibilityObject("using-none");
- output("usingNone.title: [" + usingNone.title + "]");
- output("usingNone.description: [" + usingNone.description + "]");
+ output("usingNone.deprecatedTitle: [" + usingNone.deprecatedTitle + "]");
+ output("usingNone.deprecatedDescription: [" + usingNone.deprecatedDescription + "]");
var usingLabel = getAccessibilityObject("using-label");
- output("usingLabel.title: [" + usingLabel.title + "]");
- output("usingLabel.description: [" + usingLabel.description + "]");
+ output("usingLabel.deprecatedTitle: [" + usingLabel.deprecatedTitle + "]");
+ output("usingLabel.deprecatedDescription: [" + usingLabel.deprecatedDescription + "]");
var usingLabelledby = getAccessibilityObject("using-labelledby");
- output("usingLabelledby.title: [" + usingLabelledby.title + "]");
- output("usingLabelledby.description: [" + usingLabelledby.description + "]");
+ output("usingLabelledby.deprecatedTitle: [" + usingLabelledby.deprecatedTitle + "]");
+ output("usingLabelledby.deprecatedDescription: [" + usingLabelledby.deprecatedDescription + "]");
var usingLabeledby = getAccessibilityObject("using-labeledby");
- output("usingLabeledby.title: [" + usingLabeledby.title + "]");
- output("usingLabeledby.description: [" + usingLabeledby.description + "]");
+ output("usingLabeledby.deprecatedTitle: [" + usingLabeledby.deprecatedTitle + "]");
+ output("usingLabeledby.deprecatedDescription: [" + usingLabeledby.deprecatedDescription + "]");
}
successfullyParsed = true;

Powered by Google App Engine
This is Rietveld 408576698