RESOLVED FIXED 15741
REGRESSION: svg/W3C-SVG-1.1/fonts-elem-03-b.svg shows worse behavior on TOT
https://bugs.webkit.org/show_bug.cgi?id=15741
Summary REGRESSION: svg/W3C-SVG-1.1/fonts-elem-03-b.svg shows worse behavior on TOT
Eric Seidel (no email)
Reported 2007-10-28 18:40:18 PDT
svg/W3C-SVG-1.1/fonts-elem-03-b.svg has never been correct, and wont' be until we implement SVG fonts, but at least the font size used to be correct before. Now it just spews about how it couldn't create a font. We should recognize .svg urls and not try to load them using the standard font-face stuff. ERROR: unable to initialize with font (null) at not known (/Stuff/Projects/WebKit/WebCore/platform/mac/FontDataMac.mm:147 void WebCore::FontData::platformInit()) ERROR: Corrupt font detected, using (null) in place of (null) located at "not known". (/Stuff/Projects/WebKit/WebCore/platform/mac/FontDataMac.mm:154 void WebCore::FontData::platformInit()) ERROR: failed to set up font, using system font ?;}? (/Stuff/Projects/WebKit/WebCore/platform/mac/FontDataMac.mm:161 void WebCore::FontData::platformInit()) ERROR: unable to initialize with font (null) at not known (/Stuff/Projects/WebKit/WebCore/platform/mac/FontDataMac.mm:147 void WebCore::FontData::platformInit()) ERROR: Corrupt font detected, using (null) in place of (null) located at "not known". (/Stuff/Projects/WebKit/WebCore/platform/mac/FontDataMac.mm:154 void WebCore::FontData::platformInit()) ERROR: failed to set up font, using system font ?;}??i?? (/Stuff/Projects/WebKit/WebCore/platform/mac/FontDataMac.mm:161 void WebCore::FontData::platformInit()) ERROR: unable to initialize with font (null) at not known (/Stuff/Projects/WebKit/WebCore/platform/mac/FontDataMac.mm:147 void WebCore::FontData::platformInit()) ERROR: Corrupt font detected, using (null) in place of (null) located at "not known". (/Stuff/Projects/WebKit/WebCore/platform/mac/FontDataMac.mm:154 void WebCore::FontData::platformInit()) ERROR: failed to set up font, using system font ?;}??i?? (/Stuff/Projects/WebKit/WebCore/platform/mac/FontDataMac.mm:161 void WebCore::FontData::platformInit())
Attachments
SVG Fonts support (71.86 KB, patch)
2008-01-06 15:00 PST, Nikolas Zimmermann
oliver: review+
Eric Seidel (no email)
Comment 1 2007-10-28 18:58:55 PDT
This seems to be a very recent regression... maybe it came from my <font-face> support.
Nikolas Zimmermann
Comment 2 2008-01-06 15:00:25 PST
Created attachment 18305 [details] SVG Fonts support Uploading SVG Fonts support follow-up patch here, as it fixes this problem.
Oliver Hunt
Comment 3 2008-01-06 15:03:19 PST
Comment on attachment 18305 [details] SVG Fonts support Leave the ENABLE(SVG_FONTS) checks in, and just change the build-webkit script to have it on by default
Oliver Hunt
Comment 4 2008-01-06 15:04:15 PST
Hmm, that may only effect a few header include barriers
Oliver Hunt
Comment 5 2008-01-06 15:07:56 PST
in FontData* CSSFontSelector::getFontData there are a set of 3 "if (!face && !...)" checks -- i can't see how these are being made to only effect svg fonts...
Oliver Hunt
Comment 6 2008-01-06 15:18:18 PST
Whyfore the CString.h include in SVGfonts?
Oliver Hunt
Comment 7 2008-01-06 15:30:03 PST
Comment on attachment 18305 [details] SVG Fonts support Other than my prior comments this looks good to me. However I would very much prefer it if you could get Dan to look over the arabic form-fu Am going to do a code style check now.
Alexey Proskuryakov
Comment 8 2008-01-06 15:37:34 PST
+ virtual ~SVGGlyphElement() { } Constructors and destructors of polymorphic classes should not be inline, as they cause significant binary size bloat otherwise (for the same reason, they should be explicitly defined).
Nikolas Zimmermann
Comment 9 2008-01-06 15:39:23 PST
(In reply to comment #7) > (From update of attachment 18305 [details] [edit]) > Other than my prior comments this looks good to me. However I would very much > prefer it if you could get Dan to look over the arabic form-fu > > Am going to do a code style check now. Dan, already okayed the arabic-fu :-) CString.h include removed. CSSFontSelector: Indeed need to find a way to only do this for SVG fonts. hmmm Greetings, Niko
Nikolas Zimmermann
Comment 10 2008-01-06 15:40:21 PST
(In reply to comment #3) > (From update of attachment 18305 [details] [edit]) > Leave the ENABLE(SVG_FONTS) checks in, and just change the build-webkit script > to have it on by default Yeah, I did that.
Nikolas Zimmermann
Comment 11 2008-01-06 15:40:43 PST
(In reply to comment #8) > + virtual ~SVGGlyphElement() { } > > Constructors and destructors of polymorphic classes should not be inline, as > they cause significant binary size bloat otherwise (for the same reason, they > should be explicitly defined). Interessting, didn't know that. Fixed.
Oliver Hunt
Comment 12 2008-01-06 16:16:09 PST
Comment on attachment 18305 [details] SVG Fonts support "CSSFontSelector: Indeed need to find a way to only do this for SVG fonts." It causes no regressions despite this?
Nikolas Zimmermann
Comment 13 2008-01-07 09:42:36 PST
(In reply to comment #12) > (From update of attachment 18305 [details] [edit]) > "CSSFontSelector: Indeed need to find a way to only do this for SVG fonts." > It causes no regressions despite this? > Right, no regressions.
Oliver Hunt
Comment 14 2008-01-07 13:42:51 PST
Comment on attachment 18305 [details] SVG Fonts support Based on comments from hyatt and others, r=me
Nikolas Zimmermann
Comment 15 2008-01-07 15:17:40 PST
Landed in r29246.
Note You need to log in before you can comment on or make changes to this bug.