Closed
Bug 800658
Opened 13 years ago
Closed 13 years ago
Reenable canvas2d sub-tests that were disabled in a0297358abc1
Categories
(Core :: Graphics: Canvas2D, defect)
Tracking
()
RESOLVED
FIXED
mozilla20
People
(Reporter: bjacob, Assigned: nrc)
References
()
Details
Attachments
(2 files, 1 obsolete file)
3.02 KB,
patch
|
bas.schouten
:
review+
|
Details | Diff | Splinter Review |
4.42 KB,
patch
|
bjacob
:
review+
|
Details | Diff | Splinter Review |
These are a few isPointInPath calls that are now producing the opposite of the expected result.
--- a/content/canvas/test/test_bug764125.html
+++ b/content/canvas/test/test_bug764125.html
@@ -23,14 +23,14 @@ where only one tranform ought to be appl
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, 10) === true, "ctx.isPointInPath(110, 10) === true"); // reenable me ASAP!
ok(ctx.isPointInPath(110, 60) === false, "ctx.isPointInPath(110, 60) === false");
</script>
</pre>
</body>
</html>
diff --git a/content/canvas/test/test_canvas.html b/content/canvas/test/test_canvas.html
--- a/content/canvas/test/test_canvas.html
+++ b/content/canvas/test/test_canvas.html
@@ -13374,20 +13374,20 @@ ok(ctx.isPointInPath(50, 10) === true, "
function test_2d_path_isPointInPath_transform_1() {
var canvas = document.getElementById('c409');
var ctx = canvas.getContext('2d');
ctx.translate(50, 0);
ctx.rect(0, 0, 20, 20);
ok(ctx.isPointInPath(-40, 10) === false, "ctx.isPointInPath(-40, 10) === false");
-ok(ctx.isPointInPath(10, 10) === false, "ctx.isPointInPath(10, 10) === false");
+// ok(ctx.isPointInPath(10, 10) === false, "ctx.isPointInPath(10, 10) === false"); // reenable me ASAP!
ok(ctx.isPointInPath(49, 10) === false, "ctx.isPointInPath(49, 10) === false");
-ok(ctx.isPointInPath(51, 10) === true, "ctx.isPointInPath(51, 10) === true");
-ok(ctx.isPointInPath(69, 10) === true, "ctx.isPointInPath(69, 10) === true");
+// ok(ctx.isPointInPath(51, 10) === true, "ctx.isPointInPath(51, 10) === true"); // reenable me ASAP!
+// ok(ctx.isPointInPath(69, 10) === true, "ctx.isPointInPath(69, 10) === true"); // reenable me ASAP!
ok(ctx.isPointInPath(71, 10) === false, "ctx.isPointInPath(71, 10) === false");
First step: bisect when this regressed.
Comment 1•13 years ago
|
||
test_canvas.html was failing elsewhere as well. Disabled more tests.
https://hg.mozilla.org/integration/mozilla-inbound/rev/022c39b4aae6
Reporter | ||
Comment 2•13 years ago
|
||
The first Nightly with the regression was that of Oct. 3.
Regression window:
http://hg.mozilla.org/mozilla-central/pushloghtml?fromchange=85dd8e346102&tochange=635fcc11d2b1
Reporter | ||
Comment 3•13 years ago
|
||
Reporter | ||
Updated•13 years ago
|
![]() |
||
Updated•13 years ago
|
Assignee: nobody → ajones
![]() |
||
Comment 4•13 years ago
|
||
![]() |
Assignee | |
Comment 5•13 years ago
|
||
Testing the patch: without the test case fails with Cairo and passes with D2D; with the patch it passes with Cairo, but fails with D2D. From previous discussions with Bas, we think the canvas implementation is probably OK, but that the Cairo DrawTarget might need changing, but I need to page this back in before I can really say that about this case with any confidence.
![]() |
Assignee | |
Comment 6•13 years ago
|
||
What does Skia do?
![]() |
Assignee | |
Updated•13 years ago
|
Assignee: ajones → ncameron
Updated•13 years ago
|
![]() |
Assignee | |
Comment 7•13 years ago
|
||
The problem seems to be with aCommitTransform in EnsureUserSpacePath(), that is, it is no longer necessary. I assume this is because that behaviour is now implemented properly in Cairo paths, probably as a result of bug 795135 (although I would not put money on that).
![]() |
Assignee | |
Comment 8•13 years ago
|
||
Attachment #684988 -
Attachment is obsolete: true
Attachment #686344 -
Flags: review?(bas)
![]() |
Assignee | |
Comment 9•13 years ago
|
||
Attachment #686345 -
Flags: review?(bjacob)
![]() |
Assignee | |
Comment 10•13 years ago
|
||
Reporter | ||
Updated•13 years ago
|
Attachment #686345 -
Flags: review?(bjacob) → review+
Updated•13 years ago
|
Attachment #686344 -
Flags: review?(bas) → review+
![]() |
Assignee | |
Comment 11•13 years ago
|
||
Comment 12•13 years ago
|
||
https://hg.mozilla.org/mozilla-central/rev/69b764d11dcc
https://hg.mozilla.org/mozilla-central/rev/38c868aa3acd
Status: NEW → RESOLVED
Closed: 13 years ago
Flags: in-testsuite+
Resolution: --- → FIXED
Target Milestone: --- → mozilla20
You need to log in
before you can comment on or make changes to this bug.
Description
•