2 <title>Canvas test:
2d.path.isPointInPath.outside
</title>
3 <!-- Testing: isPointInPath() works on paths outside the canvas -->
4 <script src=
"/MochiKit/MochiKit.js"></script>
5 <script src=
"/tests/SimpleTest/SimpleTest.js"></script>
6 <link rel=
"stylesheet" href=
"/tests/SimpleTest/test.css">
8 <canvas id=
"c" width=
"100" height=
"50"><p class=
"fallback">FAIL (fallback content)
</p></canvas>
11 SimpleTest
.waitForExplicitFinish();
12 MochiKit
.DOM
.addLoadEvent(function () {
14 var canvas
= document
.getElementById('c');
15 var ctx
= canvas
.getContext('2d');
17 ctx
.rect(0, -100, 20, 20);
18 ctx
.rect(20, -10, 20, 20);
19 ok(ctx
.isPointInPath(10, -110) === false, "ctx.isPointInPath(10, -110) === false");
20 ok(ctx
.isPointInPath(10, -90) === true, "ctx.isPointInPath(10, -90) === true");
21 ok(ctx
.isPointInPath(10, -70) === false, "ctx.isPointInPath(10, -70) === false");
22 ok(ctx
.isPointInPath(30, -20) === false, "ctx.isPointInPath(30, -20) === false");
23 ok(ctx
.isPointInPath(30, 0) === true, "ctx.isPointInPath(30, 0) === true");
24 ok(ctx
.isPointInPath(30, 20) === false, "ctx.isPointInPath(30, 20) === false");