Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/path-objects/2d.path.isPointInPath.empty.html |
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/path-objects/2d.path.isPointInPath.empty.html b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/path-objects/2d.path.isPointInPath.empty.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9219d50dd0d8b9f01d9f8de7966eecf5f932abf1 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/path-objects/2d.path.isPointInPath.empty.html |
@@ -0,0 +1,24 @@ |
+<!DOCTYPE html> |
+<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. --> |
+<title>OffscreenCanvas test: 2d.path.isPointInPath.empty</title> |
+<script src="/resources/testharness.js"></script> |
+<script src="/resources/testharnessreport.js"></script> |
+<script src="/common/canvas-tests.js"></script> |
+ |
+<h1>2d.path.isPointInPath.empty</h1> |
+<p class="desc">isPointInPath() works when there is no path</p> |
+ |
+ |
+<script> |
+var t = async_test("isPointInPath() works when there is no path"); |
+t.step(function() { |
+ |
+var offscreenCanvas = new OffscreenCanvas(100, 50); |
+var ctx = offscreenCanvas.getContext('2d'); |
+ |
+_assertSame(ctx.isPointInPath(0, 0), false, "ctx.isPointInPath(0, 0)", "false"); |
+ |
+t.done(); |
+ |
+}); |
+</script> |