mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-09 04:25:38 +00:00
Bug 764125; mochitest for isPointInPath and multiple transforms. r=Bas
This commit is contained in:
parent
ab776ca738
commit
3e5d68ecf6
@ -55,6 +55,7 @@ MOCHITEST_FILES = \
|
||||
test_canvas_strokeStyle_getter.html \
|
||||
test_bug613794.html \
|
||||
test_bug753758.html \
|
||||
test_bug764125.html \
|
||||
test_drawImage_edge_cases.html \
|
||||
$(NULL)
|
||||
|
||||
|
36
content/canvas/test/test_bug764125.html
Normal file
36
content/canvas/test/test_bug764125.html
Normal file
@ -0,0 +1,36 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=764125
|
||||
|
||||
Test the correct behaviour for isPointInPath in the presence of multiple transforms,
|
||||
where only one tranform ought to be applied.
|
||||
-->
|
||||
<head>
|
||||
<title>Test for Bug 764125</title>
|
||||
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=764125">Mozilla Bug 764125</a>
|
||||
<p id="display"></p>
|
||||
<div id="content" style="display: none">
|
||||
|
||||
</div>
|
||||
<pre id="test">
|
||||
<script>
|
||||
/** Test for Bug 764125 **/
|
||||
|
||||
var c = document.createElement("canvas");
|
||||
|
||||
var ctx = c.getContext("2d");
|
||||
ctx.translate(50, 0);
|
||||
ctx.rect(50, 0, 20, 20);
|
||||
ctx.translate(0, 50);
|
||||
ok(ctx.isPointInPath(60, 10) === false, "ctx.isPointInPath(60, 10) === false");
|
||||
ok(ctx.isPointInPath(110, 10) === true, "ctx.isPointInPath(110, 10) === true");
|
||||
ok(ctx.isPointInPath(110, 60) === false, "ctx.isPointInPath(110, 60) === false");
|
||||
</script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user