Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/shadows/2d.shadow.alpha.5.html |
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/shadows/2d.shadow.alpha.5.html b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/shadows/2d.shadow.alpha.5.html |
deleted file mode 100644 |
index db31f7119ab38a15f21bc469156d097353a50353..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/shadows/2d.shadow.alpha.5.html |
+++ /dev/null |
@@ -1,30 +0,0 @@ |
-<!DOCTYPE html> |
-<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. --> |
-<title>OffscreenCanvas test: 2d.shadow.alpha.5</title> |
-<script src="/resources/testharness.js"></script> |
-<script src="/resources/testharnessreport.js"></script> |
-<script src="/common/canvas-tests.js"></script> |
- |
-<h1>2d.shadow.alpha.5</h1> |
-<p class="desc">Shadows of shapes with alpha components are drawn correctly</p> |
- |
- |
-<script> |
-var t = async_test("Shadows of shapes with alpha components are drawn correctly"); |
-t.step(function() { |
- |
-var offscreenCanvas = new OffscreenCanvas(100, 50); |
-var ctx = offscreenCanvas.getContext('2d'); |
- |
-ctx.fillStyle = '#f00'; |
-ctx.fillRect(0, 0, 100, 50); |
-ctx.fillStyle = 'rgba(64, 0, 0, 0.5)'; |
-ctx.shadowColor = '#00f'; |
-ctx.shadowOffsetY = 50; |
-ctx.fillRect(0, -50, 100, 50); |
-_assertPixelApprox(offscreenCanvas, 50,25, 127,0,127,255, "50,25", "127,0,127,255", 2); |
- |
-t.done(); |
- |
-}); |
-</script> |