Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/path-objects/2d.path.isPointInPath.transform.3.html |
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/path-objects/2d.path.isPointInPath.transform.3.html b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/path-objects/2d.path.isPointInPath.transform.3.html |
deleted file mode 100644 |
index b43e1042dd8cf2b158dc4c0148d04ad4ffd4c87b..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/path-objects/2d.path.isPointInPath.transform.3.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.path.isPointInPath.transform.3</title> |
-<script src="/resources/testharness.js"></script> |
-<script src="/resources/testharnessreport.js"></script> |
-<script src="/common/canvas-tests.js"></script> |
- |
-<h1>2d.path.isPointInPath.transform.3</h1> |
-<p class="desc">isPointInPath() handles transformations correctly</p> |
- |
- |
-<script> |
-var t = async_test("isPointInPath() handles transformations correctly"); |
-t.step(function() { |
- |
-var offscreenCanvas = new OffscreenCanvas(100, 50); |
-var ctx = offscreenCanvas.getContext('2d'); |
- |
-ctx.scale(-1, 1); |
-ctx.rect(-70, 0, 20, 20); |
-_assertSame(ctx.isPointInPath(-40, 10), false, "ctx.isPointInPath(-40, 10)", "false"); |
-_assertSame(ctx.isPointInPath(10, 10), false, "ctx.isPointInPath(10, 10)", "false"); |
-_assertSame(ctx.isPointInPath(49, 10), false, "ctx.isPointInPath(49, 10)", "false"); |
-_assertSame(ctx.isPointInPath(51, 10), true, "ctx.isPointInPath(51, 10)", "true"); |
-_assertSame(ctx.isPointInPath(69, 10), true, "ctx.isPointInPath(69, 10)", "true"); |
-_assertSame(ctx.isPointInPath(71, 10), false, "ctx.isPointInPath(71, 10)", "false"); |
- |
-t.done(); |
- |
-}); |
-</script> |