Index: third_party/WebKit/LayoutTests/fast/images/paint-subrect.html |
diff --git a/third_party/WebKit/LayoutTests/fast/images/paint-subrect.html b/third_party/WebKit/LayoutTests/fast/images/paint-subrect.html |
deleted file mode 100644 |
index 87b72bb199dff09269a8b81a2b0018daf00abaa8..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/images/paint-subrect.html |
+++ /dev/null |
@@ -1,21 +0,0 @@ |
-<canvas id="canvas" width="200" height="100"></canvas> |
-<script> |
-if (window.testRunner) |
- testRunner.dumpAsTextWithPixelResults(); |
- |
-var img = new Image(); |
-// This is a 2x1 image, blue at (0, 0) and green at (1, 0). |
-img.src = 'data:image/png;base64,' + |
-'iVBORw0KGgoAAAANSUhEUgAAAAIAAAABCAIAAAB7QOjdAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAA' + |
-'CxMBAJqcGAAAAAd0SU1FB9wIGxQKIbPpHtMAAAAPSURBVAjXY2Bg+M/wnwEABgEB/6KPEdkAAAAASUVO' + |
-'RK5CYII='; |
- |
-img.onload = function() |
-{ |
- // Start from the middle of the blue pixel and stretch to the entire |
- // canvas. Canvas should have 1/3 blue on the left and 2/3 green on the |
- // right, with gradient if interpolation allows. |
- var ctx = document.getElementById("canvas").getContext("2d"); |
- ctx.drawImage(img, 0.5, 0, 1.5, 1, 0, 0, 200, 100); |
-} |
-</script> |