RESOLVED FIXED 41895
[MathML] Implement mathcolor and mathbackground attributes
https://bugs.webkit.org/show_bug.cgi?id=41895
Summary [MathML] Implement mathcolor and mathbackground attributes
François Sausset
Reported 2010-07-08 13:20:05 PDT
Implementation & test case for the mathcolor and mathbackground attributes defined in the MathML 3 w3c Draft: http://www.w3.org/TR/MathML3/chapter3.html#presm.presatt
Attachments
Patch (31.37 KB, patch)
2010-07-08 14:16 PDT, François Sausset
no flags
Revised Patch (31.36 KB, patch)
2010-07-08 14:46 PDT, François Sausset
no flags
François Sausset
Comment 1 2010-07-08 14:16:28 PDT
Kenneth Rohde Christiansen
Comment 2 2010-07-08 14:38:13 PDT
Comment on attachment 60957 [details] Patch WebCore/mathml/MathMLElement.cpp:4 + * Copyright (C) 2010 François Sausset (sausset@gmail.com). All rights reserved. There seems to be some unicode issues here. 62 if (attr->name() == MathMLNames::mathcolorAttr) { 63 addCSSProperty(attr, CSSPropertyColor, attr->value()); 64 } else if (attr->name() == MathMLNames::mathbackgroundAttr) { 65 addCSSProperty(attr, CSSPropertyBackgroundColor, attr->value()); 66 67 } else 68 StyledElement::parseMappedAttribute(attr); These one liners should not have braces. There is also a strange newline before the last else. Apart from this the patch looks fine. Please fix these things before committing.
François Sausset
Comment 3 2010-07-08 14:46:02 PDT
Created attachment 60962 [details] Revised Patch Correct the style issues.
Eric Seidel (no email)
Comment 4 2010-07-09 03:16:43 PDT
Comment on attachment 60957 [details] Patch Cleared Kenneth Rohde Christiansen's review+ from obsolete attachment 60957 [details] so that this bug does not appear in http://webkit.org/pending-commit.
WebKit Commit Bot
Comment 5 2010-07-09 11:23:13 PDT
Comment on attachment 60962 [details] Revised Patch Clearing flags on attachment: 60962 Committed r62968: <http://trac.webkit.org/changeset/62968>
WebKit Commit Bot
Comment 6 2010-07-09 11:23:17 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.