diff --git a/content/canvas/test/Makefile.in b/content/canvas/test/Makefile.in index 711f748b86b6..65edc5ac57ac 100644 --- a/content/canvas/test/Makefile.in +++ b/content/canvas/test/Makefile.in @@ -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) diff --git a/content/canvas/test/test_bug764125.html b/content/canvas/test/test_bug764125.html new file mode 100644 index 000000000000..5b15c0ea85de --- /dev/null +++ b/content/canvas/test/test_bug764125.html @@ -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>