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

Unified Diff: LayoutTests/accessibility/aria-labelledby-stay-within.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-stay-within.html
diff --git a/LayoutTests/accessibility/aria-labelledby-stay-within.html b/LayoutTests/accessibility/aria-labelledby-stay-within.html
index 71c74c7752e5f720c59eea48044c7739a4bf1fd8..f17a6845bc08b6ee79858dc2f48e7e75773638a9 100644
--- a/LayoutTests/accessibility/aria-labelledby-stay-within.html
+++ b/LayoutTests/accessibility/aria-labelledby-stay-within.html
@@ -32,11 +32,11 @@
var labeledItem = document.getElementById("rep");
labeledItem.focus();
var result = document.getElementById("result");
- if ( accessibilityController.focusedElement.description == "AXDescription: Reply Item Five" ) {
+ if ( accessibilityController.focusedElement.deprecatedDescription == "AXDescription: Reply Item Five" ) {
result.innerText = "Passed";
}
else {
- result.innerText = "Failed. Result ==" + accessibilityController.focusedElement.description + "==";
+ result.innerText = "Failed. Result ==" + accessibilityController.focusedElement.deprecatedDescription + "==";
}
}
</script>

Powered by Google App Engine
This is Rietveld 408576698