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

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

Powered by Google App Engine
This is Rietveld 408576698