https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 03b7db51f21ce2a157454020bb46301b825152a5 authored by Alex Moshchuk on 13 April 2018, 23:12:06 UTC
Reland 2: Use PostTask to schedule cross-process postMessage forwarding.
Tip revision: 03b7db5
2d.path.isPointInPath.empty.html
<!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>
back to top