RESOLVED FIXED 6620
SVG shows up blank in WebKit+SVG
https://bugs.webkit.org/show_bug.cgi?id=6620
Summary SVG shows up blank in WebKit+SVG
Eric Seidel (no email)
Reported 2006-01-17 14:57:01 PST
Attachments
Simple Test Case (117 bytes, image/svg+xml)
2006-01-25 10:58 PST, Eric Seidel (no email)
no flags
Eric Seidel (no email)
Comment 1 2006-01-17 15:03:55 PST
There are lots of these in the console: CGAffineTransformInvert: singular matrix. CGAffineTransformInvert: singular matrix. CGAffineTransformInvert: singular matrix. CGAffineTransformInvert: singular matrix. I expect that the width/height of the outermost <svg> are being improperly calculated in the default case. This could lead to the ViewBox being invalid, thus producing an invalid viewbox to viewport trasnform.
Eric Seidel (no email)
Comment 2 2006-01-22 02:30:12 PST
*** Bug 6579 has been marked as a duplicate of this bug. ***
Eric Seidel (no email)
Comment 3 2006-01-25 10:46:58 PST
Eric Seidel (no email)
Comment 4 2006-01-25 10:58:53 PST
Created attachment 5950 [details] Simple Test Case
Eric Seidel (no email)
Comment 5 2006-01-25 10:59:35 PST
I would argue this is our highest priority SVG bug at this point. Many many SVGs fail because of this simple bug.
Eric Seidel (no email)
Comment 6 2006-01-26 02:37:52 PST
No code changes required :) Index: css/svg.css =================================================================== --- css/svg.css (revision 12385) +++ css/svg.css (working copy) @@ -37,6 +37,11 @@ overflow: visible !important } +svg { + width: 100%; + height: 100%; +} + svg, symbol, marker, pattern, foreignObject { overflow: hidden }
Note You need to log in before you can comment on or make changes to this bug.