WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
160462
Share and improve extraction of character for operator and token elements
https://bugs.webkit.org/show_bug.cgi?id=160462
Summary
Share and improve extraction of character for operator and token elements
Frédéric Wang (:fredw)
Reported
2016-08-02 13:16:02 PDT
See
bug 160241 comment 7
MathMLOperatorElement.cpp: AtomicString textContent = string.stripWhiteSpace().simplifyWhiteSpace().replace(hyphenMinus, minusSign).impl(); RenderMathMLToken.cpp: AtomicString textContent = element().textContent().stripWhiteSpace().simplifyWhiteSpace();
Attachments
Patch
(8.15 KB, patch)
2016-08-03 03:59 PDT
,
Frédéric Wang (:fredw)
darin
: review+
Details
Formatted Diff
Diff
Patch
(8.70 KB, patch)
2016-08-23 05:31 PDT
,
Frédéric Wang (:fredw)
no flags
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Frédéric Wang (:fredw)
Comment 1
2016-08-03 03:59:02 PDT
Created
attachment 285217
[details]
Patch
Darin Adler
Comment 2
2016-08-05 23:27:03 PDT
Comment on
attachment 285217
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=285217&action=review
> Source/WebCore/mathml/MathMLElement.cpp:401 > -static inline StringView skipLeadingAndTrailingWhitespace(const StringView& stringView) > +StringView MathMLElement::skipLeadingAndTrailingWhitespace(const StringView& stringView)
I don’t think this is the right thing to do. We should move this into the shared HTMLParserIdioms header instead. Please come back and do that eventually. Should be named strip, not skip.
> Source/WebCore/mathml/MathMLOperatorElement.cpp:57 > + UChar character = static_cast<UChar>(codePoint.value());
This should compile without the typecast.
> Source/WebCore/mathml/MathMLTextElement.cpp:100 > + auto codePoints = skipLeadingAndTrailingWhitespace(string).codePoints();
Why the need to strip whitespace? Does the specification really call for this?
> Source/WebCore/mathml/MathMLTextElement.cpp:104 > + Optional<UChar32> character = *iterator;
Should just use UChar32 or auto here. I think the code below will compile without this already being an optional.
Frédéric Wang (:fredw)
Comment 3
2016-08-21 03:18:48 PDT
(In reply to
comment #2
)
> I don’t think this is the right thing to do. We should move this into the > shared HTMLParserIdioms header instead. Please come back and do that > eventually.
Yes, that was my plan. Making this depends on
bug 160172
.
> > Source/WebCore/mathml/MathMLTextElement.cpp:100 > > + auto codePoints = skipLeadingAndTrailingWhitespace(string).codePoints(); > > Why the need to strip whitespace? Does the specification really call for > this?
Yes, unfortunately. Again see
https://lists.w3.org/Archives/Public/www-math/2016Aug/0000.html
Note that at the moment we have inconsistent behavior: we trim whitespace for <mi> x </mi> (this case) but not for <mi> sin </mi> (
bug 125628
). As I said on the Math WG mailing list I think this requirement is useless ; nobody adds such spaces in MathML formulas used in practice. I would suggest to just depart from the spec here and ignore this requirement.
Frédéric Wang (:fredw)
Comment 4
2016-08-23 05:29:02 PDT
(In reply to
comment #2
)
> > Source/WebCore/mathml/MathMLTextElement.cpp:104 > > + Optional<UChar32> character = *iterator; > > Should just use UChar32 or auto here. I think the code below will compile > without this already being an optional.
On Linux, I gcc complains with Source/WebCore/mathml/MathMLTokenElement.cpp:99:41: error: operands to ?: have different types 'UChar32 {aka int}' and 'const WTF::NulloptTag'
Frédéric Wang (:fredw)
Comment 5
2016-08-23 05:31:06 PDT
Created
attachment 286704
[details]
Patch
Frédéric Wang (:fredw)
Comment 6
2016-08-23 06:38:15 PDT
Committed
r204830
: <
http://trac.webkit.org/changeset/204830
>
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