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

Unified Diff: third_party/WebKit/LayoutTests/accessibility/name-calc-native-markup-input-buttons.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/name-calc-native-markup-input-buttons.html
diff --git a/third_party/WebKit/LayoutTests/accessibility/name-calc-native-markup-input-buttons.html b/third_party/WebKit/LayoutTests/accessibility/name-calc-native-markup-input-buttons.html
index b8dad94e09fd109879eed1a202c3c31e7e5c4b80..bc7d1aa169b9a9c00ac3518713bf2499aaad0323 100644
--- a/third_party/WebKit/LayoutTests/accessibility/name-calc-native-markup-input-buttons.html
+++ b/third_party/WebKit/LayoutTests/accessibility/name-calc-native-markup-input-buttons.html
@@ -176,7 +176,7 @@ test(function(t) {
test(function(t) {
var axImageInput1 = accessibilityController.accessibleElementById("image-input1");
assert_equals(axImageInput1.name, "Submit");
- assert_equals(axImageInput1.nameFrom, "attribute");
+ assert_equals(axImageInput1.nameFrom, "value");
}, "Image input with no value");
</script>
@@ -224,7 +224,7 @@ test(function(t) {
test(function(t) {
var axImageInput5 = accessibilityController.accessibleElementById("image-input5");
assert_equals(axImageInput5.name, "Submit");
- assert_equals(axImageInput5.nameFrom, "attribute");
+ assert_equals(axImageInput5.nameFrom, "value");
}, "Image input with title only");
</script>

Powered by Google App Engine
This is Rietveld 408576698