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

Side by Side Diff: content/test/data/accessibility/html/img-link-empty-alt.html

Issue 2833843005: Handling of different types of empty alt (Closed)
Patch Set: Ready to land Created 3 years, 7 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 unified diff | Download patch
OLDNEW
1 <html> 1 <html>
2 <body> 2 <body>
3 <a href="foo"> 3 <a href="foo">
4 <img src="unread.jpg" alt="" role="presentation">unread 4 <img src="unread.jpg" alt="" role="presentation">unread
5 </a> 5 </a>
6 <a href="foo"> 6 <a href="foo">
7 <img src="read.jpg" alt="">read 7 <img src="read.jpg" alt="">read
8 </a> 8 </a>
9 <a href="foo">
10 <img src="read.jpg" alt>read
11 </a>
12 <a href="foo">
13 <img src="read.jpg">read
14 </a>
9 </body> 15 </body>
10 </html> 16 </html>
11 17
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698