| <!DOCTYPE html> |
| <title>Canvas test: 2d.path.isPointInPath.basic.1</title> |
| <script src="../tests.js"></script> |
| <link rel="stylesheet" href="../tests.css"> |
| <link rel="prev" href="2d.path.clip.unaffected.html" title="2d.path.clip.unaffected"> |
| <link rel="next" href="2d.path.isPointInPath.basic.2.html" title="2d.path.isPointInPath.basic.2"> |
| <body class="show_output"> |
| <p> |
| <a href="2d.path.clip.unaffected.html" accesskey="p" title="[p] 2d.path.clip.unaffected"><</a> |
| <a href="index.html">[index]</a> |
| <a href="2d.path.isPointInPath.basic.2.html" accesskey="n" title="[n] 2d.path.isPointInPath.basic.2">></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>.1</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(0, 0, 20, 20); |
| _assertSame(ctx.isPointInPath(10, 10), true, "ctx.isPointInPath(10, 10)", "true"); |
| _assertSame(ctx.isPointInPath(30, 10), false, "ctx.isPointInPath(30, 10)", "false"); |
| |
| |
| }); |
| </script> |
| |