Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/fill-and-stroke-styles/2d.gradient.interpolate.outside.html |
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/fill-and-stroke-styles/2d.gradient.interpolate.outside.html b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/fill-and-stroke-styles/2d.gradient.interpolate.outside.html |
deleted file mode 100644 |
index f0fd9afab66bf14cb07b68cc458fb257a35cee92..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/fill-and-stroke-styles/2d.gradient.interpolate.outside.html |
+++ /dev/null |
@@ -1,33 +0,0 @@ |
-<!DOCTYPE html> |
-<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. --> |
-<title>OffscreenCanvas test: 2d.gradient.interpolate.outside</title> |
-<script src="/resources/testharness.js"></script> |
-<script src="/resources/testharnessreport.js"></script> |
-<script src="/common/canvas-tests.js"></script> |
- |
-<h1>2d.gradient.interpolate.outside</h1> |
-<p class="desc"></p> |
- |
- |
-<script> |
-var t = async_test(""); |
-t.step(function() { |
- |
-var offscreenCanvas = new OffscreenCanvas(100, 50); |
-var ctx = offscreenCanvas.getContext('2d'); |
- |
-ctx.fillStyle = '#f00'; |
-ctx.fillRect(0, 0, 100, 50); |
-var g = ctx.createLinearGradient(25, 0, 75, 0); |
-g.addColorStop(0.4, '#0f0'); |
-g.addColorStop(0.6, '#0f0'); |
-ctx.fillStyle = g; |
-ctx.fillRect(0, 0, 100, 50); |
-_assertPixelApprox(offscreenCanvas, 20,25, 0,255,0,255, "20,25", "0,255,0,255", 2); |
-_assertPixelApprox(offscreenCanvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255", 2); |
-_assertPixelApprox(offscreenCanvas, 80,25, 0,255,0,255, "80,25", "0,255,0,255", 2); |
- |
-t.done(); |
- |
-}); |
-</script> |