Chromium Code Reviews

Unified Diff: LayoutTests/fast/hidpi/image-srcset-src-selection-1x.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.
Jump to:
View side-by-side diff with in-line comments
Index: LayoutTests/fast/hidpi/image-srcset-src-selection-1x.html
diff --git a/LayoutTests/fast/hidpi/image-srcset-src-selection-1x.html b/LayoutTests/fast/hidpi/image-srcset-src-selection-1x.html
new file mode 100644
index 0000000000000000000000000000000000000000..d2a63aa7d6a188f5279af576c1c9757ae3ce9090
--- /dev/null
+++ b/LayoutTests/fast/hidpi/image-srcset-src-selection-1x.html
@@ -0,0 +1,23 @@
+<html>
+<head>
+<script>
+ window.targetScaleFactor = 1;
+</script>
+<script src="resources/srcset-helper.js"></script>
+<script src="../js/resources/js-test-pre.js"></script>
+<script>
+ if (window.testRunner) {
+ testRunner.dumpAsText();
+ }
+
+ addEventListener("load", function() {
+ shouldBeTrue('document.getElementById("foo").clientWidth==100');
+ }, false);
+</script>
+</head>
+
+<body id="body">
+ <div>This test passes if the div below is a blue 100px square when the deviceScaleFactor is 1. It simply ensures that the src attribute is taken into account by the selection algorithm when this one is processing the images candidates</div>
+ <img id="foo" src="resources/blue-100-px-square.png" srcset="resources/green-200-px-square.png 2x">
+</body>
+</html>

Powered by Google App Engine