| <!DOCTYPE html> |
| <title>Canvas test: 2d.path.isPointInPath.basic.2</title> |
| <script src="../tests.js"></script> |
| <link rel="stylesheet" href="../tests.css"> |
| <link rel="prev" href="2d.path.isPointInPath.basic.1.html" title="2d.path.isPointInPath.basic.1"> |
| <link rel="next" href="2d.path.isPointInPath.edge.html" title="2d.path.isPointInPath.edge"> |
| <body class="show_output"> |
| <p> |
| <a href="2d.path.isPointInPath.basic.1.html" accesskey="p" title="[p] 2d.path.isPointInPath.basic.1"><</a> |
| <a href="index.html">[index]</a> |
| <a href="2d.path.isPointInPath.edge.html" accesskey="n" title="[n] 2d.path.isPointInPath.edge">></a> |
| <h1><a href="index.2d.html">2d</a>.<a href="index.2d.path.html">path</a>.<a href="index.2d.path.isPointInPath.html">isPointInPath</a>.<a href="index.2d.path.isPointInPath.basic.html">basic</a>.2</h1> |
| <p class="desc">isPointInPath() detects whether the point is inside the path</p> |
| <div class="refs">References: |
| <ul> |
| <li><a href="spec.html#testrefs.2d.path.isPointInPath">2d.path.isPointInPath</a> |
| |
| </ul> |
| </div> |
| |
| <p class="output">Actual output:</p> |
| <canvas id="c" class="output" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas> |
| |
| <ul id="d"></ul> |
| <script> |
| _addTest(function(canvas, ctx) { |
| |
| ctx.rect(20, 0, 20, 20); |
| _assertSame(ctx.isPointInPath(10, 10), false, "ctx.isPointInPath(10, 10)", "false"); |
| _assertSame(ctx.isPointInPath(30, 10), true, "ctx.isPointInPath(30, 10)", "true"); |
| |
| |
| }); |
| </script> |
| |