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

Side by Side Diff: LayoutTests/http/tests/loading/preload-image-srcset.html

Issue 23861003: Enable srcset support in HTMLImageElement (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressed issues raised in review. Merged Romain Perier's new parser implementation. Created 7 years, 3 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 <html>
2 <head>
3 <script src="http://127.0.0.1:8000/resources/slow-script.pl?delay=1000"></script >
4 <script src="../resources/js-test-pre.js"></script>
5 </head>
6 <body>
7 <script>
8 shouldBeFalse("internals.isPreloaded('resources/image1.png');");
9 shouldBeTrue("internals.isPreloaded('resources/base-image1.png');");
10 shouldBeTrue("internals.isPreloaded('resources/image2.png');");
11 </script>
12 <div>This test passes if the fallback image (defined in the src attribute) is no t preloaded, but the 1x version (defined in srcset) is.</div>
13 <div>The second image is here to make sure isPreloaded is working properly</div>
14 <img height="100" width="100" src="resources/preload-test.jpg" srcset="resources /base-image1.png 1x, resources/base-image3.png 3x, resources/base-image2.png 2x" ></img>
15 <img src="resources/image2.png">
16 </body>
17 </html>
18
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698