gecko/content/canvas/test/test_2d.path.isPointInPath.empty.html

24 lines
677 B
HTML

<!DOCTYPE HTML>
<title>Canvas test: 2d.path.isPointInPath.empty</title>
<!-- Testing: isPointInPath() works when there is no path -->
<script src="/MochiKit/MochiKit.js"></script>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" href="/tests/SimpleTest/test.css">
<body>
<canvas id="c" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
<script>
SimpleTest.waitForExplicitFinish();
MochiKit.DOM.addLoadEvent(function () {
var canvas = document.getElementById('c');
var ctx = canvas.getContext('2d');
ok(ctx.isPointInPath(0, 0) === false, "ctx.isPointInPath(0, 0) === false");
SimpleTest.finish();
});
</script>