WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED DUPLICATE of
bug 40663
15644
HTML and SVG need to share more text painting code
https://bugs.webkit.org/show_bug.cgi?id=15644
Summary
HTML and SVG need to share more text painting code
Eric Seidel (no email)
Reported
2007-10-23 15:19:22 PDT
HTML and SVG need to share more text painting code I was looking through the SVG text painting code today and I realized that a good bit of it is just copy/paste. One glaring example: // Set a text shadow if we have one. // FIXME: Support multiple shadow effects. Need more from the CG API before // we can do this. bool setShadow = false; if (styleToUse->textShadow()) { paintInfo.context->setShadow(IntSize(styleToUse->textShadow()->x, styleToUse->textShadow()->y), styleToUse->textShadow()->blur, styleToUse->textShadow()->color); setShadow = true; } What happens when the HTML text side finally fixes that bug? It will be broken for SVG too, unless we abstract that (and other) logic into a single shared function.
Attachments
Add attachment
proposed patch, testcase, etc.
Nikolas Zimmermann
Comment 1
2010-06-17 01:39:15 PDT
40663 will fix this bug. *** This bug has been marked as a duplicate of
bug 40663
***
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug