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

Side by Side Diff: content/test/data/accessibility/html/picture.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
(Empty)
1 <!--
2 @MAC-ALLOW:AXRoleDescription='image'
3 @WIN-ALLOW:xml-roles:*
4 -->
5 <html>
6 <body>
7 <picture>
8 <source sizes="100vw" srcset="./200.webp 200w,./400.webp 400w"
9 type="image/webp" />
10 <img src="./200.jpg" width="200" height="200" alt="x"
11 sizes="100vw" srcset="./200.jpg 200w,./400.jpg 400w" />
12 </picture>
13 <picture>
14 <source sizes="100vw" srcset="./200.webp 200w,./400.webp 400w"
15 type="image/webp" />
16 <img src="./200.jpg" width="200" height="200" alt=" "
17 sizes="100vw" srcset="./200.jpg 200w,./400.jpg 400w" />
18 </picture>
19 <picture>
20 <source sizes="100vw" srcset="./200.webp 200w,./400.webp 400w"
21 type="image/webp" />
22 <img src="./200.jpg" width="200" height="200" alt=""
23 sizes="100vw" srcset="./200.jpg 200w,./400.jpg 400w" />
24 </picture>
25 <picture>
26 <source sizes="100vw" srcset="./200.webp 200w,./400.webp 400w"
27 type="image/webp" />
28 <img src="./200.jpg" width="200" height="200" alt
29 sizes="100vw" srcset="./200.jpg 200w,./400.jpg 400w" />
30 </picture>
31 <picture>
32 <source sizes="100vw" srcset="./200.webp 200w,./400.webp 400w"
33 type="image/webp" />
34 <img src="./200.jpg" width="200" height="200"
35 sizes="100vw" srcset="./200.jpg 200w,./400.jpg 400w" />
36 </picture>
37 </body>
38 </html>
39
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698