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

Unified Diff: third_party/WebKit/LayoutTests/accessibility/img-fallsback-to-title.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-fallsback-to-title.html
diff --git a/third_party/WebKit/LayoutTests/accessibility/img-fallsback-to-title.html b/third_party/WebKit/LayoutTests/accessibility/img-fallsback-to-title.html
index ca5cdb7a33f536f4cac91be65cca5ba864f2ff79..a1ba5a62323cf373b232ffb589b766f3bced4135 100644
--- a/third_party/WebKit/LayoutTests/accessibility/img-fallsback-to-title.html
+++ b/third_party/WebKit/LayoutTests/accessibility/img-fallsback-to-title.html
@@ -5,7 +5,6 @@
</head>
<body id="body">
- <img id="img-ignored" alt="" height="100" width="100">
<img id="img1" title="test1" height="100" width="100">
<img id="img2" alt="alt" title="test2" height="100" width="100">
<div id="img3" role="img" title="test3" width="100" height="100">test</div>
@@ -41,9 +40,6 @@
var image4 = accessibilityController.accessibleElementById("img4");
debug("Image4 name: " + image4.name);
debug("Image4 description: " + image4.description + "<br>");
-
- // Verify that the first image (with an empty alt tag) is ignored
- shouldBe("accessibilityController.accessibleElementById('img-ignored')", "undefined");
}
</script>

Powered by Google App Engine
This is Rietveld 408576698