Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / content / canvas / test / test_2d.path.isPointInPath.subpath.html
blobd05cbcad801e42661441a3e06ca3068c07b68c51
1 <!DOCTYPE HTML>
2 <title>Canvas test: 2d.path.isPointInPath.subpath</title>
3 <!-- Testing: isPointInPath() uses the current path, not just the subpath -->
4 <script src="/MochiKit/MochiKit.js"></script>
5 <script src="/tests/SimpleTest/SimpleTest.js"></script>
6 <link rel="stylesheet" href="/tests/SimpleTest/test.css">
7 <body>
8 <canvas id="c" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
9 <script>
11 SimpleTest.waitForExplicitFinish();
12 MochiKit.DOM.addLoadEvent(function () {
14 var canvas = document.getElementById('c');
15 var ctx = canvas.getContext('2d');
17 ctx.rect(0, 0, 20, 20);
18 ctx.beginPath();
19 ctx.rect(20, 0, 20, 20);
20 ctx.closePath();
21 ctx.rect(40, 0, 20, 20);
22 ok(ctx.isPointInPath(10, 10) === false, "ctx.isPointInPath(10, 10) === false");
23 ok(ctx.isPointInPath(30, 10) === true, "ctx.isPointInPath(30, 10) === true");
24 ok(ctx.isPointInPath(50, 10) === true, "ctx.isPointInPath(50, 10) === true");
26 SimpleTest.finish();
28 });
29 </script>