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

Unified Diff: third_party/WebKit/LayoutTests/accessibility/legend.html

Issue 1435113003: Make use of new AX name calc in Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix issue with ariaTextAlternative 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/legend.html
diff --git a/third_party/WebKit/LayoutTests/accessibility/legend.html b/third_party/WebKit/LayoutTests/accessibility/legend.html
index 4d46fdf40f25d05ab8ce35a0c909085dec97f78b..dc7b832dcd1444d9342ba837dd943225eb61f42d 100644
--- a/third_party/WebKit/LayoutTests/accessibility/legend.html
+++ b/third_party/WebKit/LayoutTests/accessibility/legend.html
@@ -35,9 +35,9 @@
shouldBeTrue("titleUIElement != null");
var titleUIElementText = titleUIElement;
while (titleUIElementText && titleUIElementText.childrenCount)
- titleUIElementText = titleUIElementText.childAtIndex(0);
+ titleUIElementText = titleUIElementText.childAtIndex(0);
- shouldBe("titleUIElementText.stringValue", "'AXValue: Choose a shipping method:'");
+ shouldBe("titleUIElementText.name", "'Choose a shipping method:'");
}
</script>

Powered by Google App Engine
This is Rietveld 408576698