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

Unified Diff: LayoutTests/fast/dom/HTMLImageElement/image-dynamic-width.html

Issue 136693020: Add image loading spec related tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added srcset related tests Created 6 years, 10 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/fast/dom/HTMLImageElement/image-dynamic-width.html
diff --git a/LayoutTests/fast/dom/HTMLImageElement/image-dynamic-width.html b/LayoutTests/fast/dom/HTMLImageElement/image-dynamic-width.html
new file mode 100644
index 0000000000000000000000000000000000000000..0152532fd94b7b840357ca372f33f2c2692a4e57
--- /dev/null
+++ b/LayoutTests/fast/dom/HTMLImageElement/image-dynamic-width.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<script src="../../../resources/js-test.js"></script>
+<script>
+description("Test that creating a cached image and immediately checking its width works");
+jsTestIsAsync = true;
+var src = '../resources/abe.png?' + Math.random();
+var currentResult = false;
+function test(expected) {
+ var i = new Image();
+ i.src = src;
+ currentResult = (i.width == expected);
+ shouldBeTrue('currentResult');
+ finishJSTest();
+}
+test(0);
+onload = function(){test(76);};
+</script>

Powered by Google App Engine
This is Rietveld 408576698