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

Unified Diff: LayoutTests/http/tests/loading/preload-image-src.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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/http/tests/loading/preload-image-src.html
diff --git a/LayoutTests/http/tests/loading/preload-image-src.html b/LayoutTests/http/tests/loading/preload-image-src.html
new file mode 100644
index 0000000000000000000000000000000000000000..f7e06c451e19dcfbed3c16b4917b5855753a9293
--- /dev/null
+++ b/LayoutTests/http/tests/loading/preload-image-src.html
@@ -0,0 +1,17 @@
+<html>
+<head>
+<script src="../resources/js-test-pre.js"></script>
+<script src="http://127.0.0.1:8000/resources/slow-script.pl?delay=1000"></script>
+</head>
+<body>
+<script>
+ shouldBeTrue("internals.isPreloaded('resources/base-image1.png');");
+ shouldBeTrue("internals.isPreloaded('resources/base-image2.png');");
+ shouldBeFalse("internals.isPreloaded('resources/base-image3.png');");
+</script>
+<div>This test passes if the image (defined in the src attribute) is preloaded.</div>
+<img src="resources/base-image1.png">
+<img src="resources/base-image2.png" src="resources/base-image3.png">
+</body>
+</html>
+

Powered by Google App Engine
This is Rietveld 408576698