Closed
Bug 358718
Opened 19 years ago
Closed 19 years ago
Testcase from bug 356400 stops drawing when it's fully zoomed
Categories
(Core :: SVG, defect)
Core
SVG
Tracking
()
VERIFIED
INVALID
People
(Reporter: martijn.martijn, Unassigned)
References
()
Details
(Keywords: testcase)
This is a follow-up from bug 356400, the testcase in that bug used to crash, but now after it has been fully zoomed in, it doesn't get repainted anymore.
Updated•19 years ago
|
OS: Windows XP → All
Hardware: PC → All
Comment 1•19 years ago
|
||
The reason that the SVG stops painting is that the line:
if (scale > 5) amount -= amount;
causes 'amount' to be set to zero, which means that the scale also gets set to zero.
Status: NEW → RESOLVED
Closed: 19 years ago
Resolution: --- → INVALID
Comment 3•19 years ago
|
||
:-)
Comment 4•19 years ago
|
||
Your fix for bug 369992 does change what happens with this testcase. When the scale is set to 0 the previously rendered scale < 5 text is cleared which I think is the desirable outcome.
You need to log in
before you can comment on or make changes to this bug.
Description
•