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

Side by Side Diff: LayoutTests/http/tests/loading/dont-preload-non-img-srcset.html

Issue 23861003: Enable srcset support in HTMLImageElement (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed a flaky test 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="../resources/js-test-pre.js"></script>
4 <script>
5 window.targetScaleFactor = 1;
6 </script>
7 <script src="../resources/srcset-helper.js"></script>
8 <script src="http://127.0.0.1:8000/resources/slow-script.pl?delay=1000"></script >
9 </head>
10 <body>
11 <script>
12 shouldBeTrue("internals.isPreloaded('resources/base-image1.png');");
13 shouldBeFalse("internals.isPreloaded('resources/empty.html');");
14 shouldBeFalse("internals.isPreloaded('resources/empty.js');");
15 </script>
16 <div>This test passes if the image is preloaded, but none of the non-img element s with a srcset attribute is.</div>
17 <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>
18 <iframe srcset="resources/empty.html"></iframe>
19 <script srcset="resources/empty.js"></script>
20 </body>
21 </html>
22
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698