Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/drawing-rectangles-to-the-canvas/2d.strokeRect.path.html |
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/drawing-rectangles-to-the-canvas/2d.strokeRect.path.html b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/drawing-rectangles-to-the-canvas/2d.strokeRect.path.html |
deleted file mode 100644 |
index dc49cbfbe69b33bf96e2204765ad4a02f3cf398c..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/drawing-rectangles-to-the-canvas/2d.strokeRect.path.html |
+++ /dev/null |
@@ -1,31 +0,0 @@ |
-<!DOCTYPE html> |
-<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. --> |
-<title>OffscreenCanvas test: 2d.strokeRect.path</title> |
-<script src="/resources/testharness.js"></script> |
-<script src="/resources/testharnessreport.js"></script> |
-<script src="/common/canvas-tests.js"></script> |
- |
-<h1>2d.strokeRect.path</h1> |
-<p class="desc">strokeRect does not affect the current path</p> |
- |
- |
-<script> |
-var t = async_test("strokeRect does not affect the current path"); |
-t.step(function() { |
- |
-var offscreenCanvas = new OffscreenCanvas(100, 50); |
-var ctx = offscreenCanvas.getContext('2d'); |
- |
-ctx.beginPath(); |
-ctx.rect(0, 0, 100, 50); |
-ctx.strokeStyle = '#f00'; |
-ctx.lineWidth = 5; |
-ctx.strokeRect(0, 0, 16, 16); |
-ctx.fillStyle = '#0f0'; |
-ctx.fill(); |
-_assertPixel(offscreenCanvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255"); |
- |
-t.done(); |
- |
-}); |
-</script> |