зеркало из https://github.com/mozilla/pjs.git
41 строка
1.4 KiB
HTML
41 строка
1.4 KiB
HTML
<!DOCTYPE HTML>
|
|
<title>Canvas test: 2d.path.isPointInPath.winding</title>
|
|
<script src="/MochiKit/MochiKit.js"></script>
|
|
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css">
|
|
<body>
|
|
<canvas id="c" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
|
|
<script>
|
|
var _deferred = false;
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
MochiKit.DOM.addLoadEvent(function () {
|
|
|
|
var canvas = document.getElementById('c');
|
|
var ctx = canvas.getContext('2d');
|
|
|
|
ctx.moveTo(0, 0);
|
|
ctx.lineTo(50, 0);
|
|
ctx.lineTo(50, 50);
|
|
ctx.lineTo(0, 50);
|
|
ctx.lineTo(0, 0);
|
|
ctx.lineTo(10, 10);
|
|
ctx.lineTo(10, 40);
|
|
ctx.lineTo(40, 40);
|
|
ctx.lineTo(40, 10);
|
|
ctx.lineTo(10, 10);
|
|
ok(ctx.isPointInPath(5, 5) === true, "ctx.isPointInPath(5, 5) === true");
|
|
ok(ctx.isPointInPath(25, 5) === true, "ctx.isPointInPath(25, 5) === true");
|
|
ok(ctx.isPointInPath(45, 5) === true, "ctx.isPointInPath(45, 5) === true");
|
|
ok(ctx.isPointInPath(5, 25) === true, "ctx.isPointInPath(5, 25) === true");
|
|
ok(ctx.isPointInPath(25, 25) === false, "ctx.isPointInPath(25, 25) === false");
|
|
ok(ctx.isPointInPath(45, 25) === true, "ctx.isPointInPath(45, 25) === true");
|
|
ok(ctx.isPointInPath(5, 45) === true, "ctx.isPointInPath(5, 45) === true");
|
|
ok(ctx.isPointInPath(25, 45) === true, "ctx.isPointInPath(25, 45) === true");
|
|
ok(ctx.isPointInPath(45, 45) === true, "ctx.isPointInPath(45, 45) === true");
|
|
|
|
if (!_deferred) SimpleTest.finish();
|
|
});
|
|
</script>
|
|
|