[Webkit-unassigned] [Bug 25645] SVG - overflow for big sized elements

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Mar 24 05:46:24 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=25645





--- Comment #6 from David Yonge-Mallo <davinci at chromium.org>  2010-03-24 05:46:24 PST ---
By the way, the bug can be "solved" entirely by clamping the output from the
parser to std::limits::max()-1 and std::limits::min()+1.  With the above
suggested patch, the renderer will fail to display anything because the numbers
are too big, but if the clamping hack is put in, it will display something that
visually appears to be correct (because the coordinates are so big they are
effectively the same from the view port).  This "fix" is of course a bad idea
as transforms may later push the coordinates beyond the limits of integer
storage again.  However, you may want to put such code in for debugging
purposes.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list