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

Unified Diff: third_party/WebKit/LayoutTests/accessibility/img-alt-tag-only-whitespace.html

Issue 2479593007: Expose images to accessibility (Closed)
Patch Set: A few more tests rebaselined. Created 4 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/img-alt-tag-only-whitespace.html
diff --git a/third_party/WebKit/LayoutTests/accessibility/img-alt-tag-only-whitespace.html b/third_party/WebKit/LayoutTests/accessibility/img-alt-tag-only-whitespace.html
index 5a57e284b895d8e5a2eade8d8e5eaaa459553782..bd5da91ff40159abb8df48340439e3b20ea110b4 100644
--- a/third_party/WebKit/LayoutTests/accessibility/img-alt-tag-only-whitespace.html
+++ b/third_party/WebKit/LayoutTests/accessibility/img-alt-tag-only-whitespace.html
@@ -16,14 +16,14 @@
<script>
- description("This tests that images with alt tags that only have white space are ignored.");
+ description("This tests that images with alt tags that only have white space are not ignored.");
if (window.accessibilityController) {
document.getElementById("images").focus();
var imagesGroup = accessibilityController.focusedElement;
- shouldBe("imagesGroup.childrenCount", "4");
- console.log("Image description: " + imagesGroup.childAtIndex(2).name);
+ shouldBe("imagesGroup.childrenCount", "6");
+ console.log("Image description: " + imagesGroup.childAtIndex(4).name);
}
</script>

Powered by Google App Engine
This is Rietveld 408576698