<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[205206] trunk/Source/WebCore</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/205206">205206</a></dd>
<dt>Author</dt> <dd>commit-queue@webkit.org</dd>
<dt>Date</dt> <dd>2016-08-30 15:54:41 -0700 (Tue, 30 Aug 2016)</dd>
</dl>

<h3>Log Message</h3>
<pre>Move some code from MathMLElement to MathMLPresentationElement
https://bugs.webkit.org/show_bug.cgi?id=161377

Patch by Frederic Wang &lt;fwang@igalia.com&gt; on 2016-08-30
Reviewed by Darin Adler.

The following code is only used in presentation MathML classes. We then move it from
MathMLElement to MathMLPresentationElement:
- testing whether a child is a phrasing/flow element.
- parsing of length attributes.
- parsing of boolean attributes.
- parsing of mathvariant attributes.

No new tests, already covered by existing tests.

* mathml/MathMLElement.cpp:
(WebCore::MathMLElement::isPhrasingContent): Deleted.
(WebCore::MathMLElement::isFlowContent): Deleted.
(WebCore::MathMLElement::parseNumberAndUnit): Deleted.
(WebCore::MathMLElement::parseNamedSpace): Deleted.
(WebCore::MathMLElement::parseMathMLLength): Deleted.
(WebCore::MathMLElement::cachedMathMLLength): Deleted.
(WebCore::MathMLElement::cachedBooleanAttribute): Deleted.
(WebCore::MathMLElement::parseMathVariantAttribute): Deleted.
(WebCore::MathMLElement::specifiedDisplayStyle): Deleted.
(WebCore::MathMLElement::specifiedMathVariant): Deleted.
* mathml/MathMLElement.h:
(WebCore::MathMLElement::specifiedDisplayStyle):
(WebCore::MathMLElement::specifiedMathVariant):
(WebCore::MathMLElement::acceptsDisplayStyleAttribute): Deleted.
(WebCore::MathMLElement::acceptsMathVariantAttribute): Deleted.
(WebCore::MathMLElement::toOptionalBool): Deleted.
* mathml/MathMLPresentationElement.cpp:
(WebCore::MathMLPresentationElement::isPhrasingContent):
(WebCore::MathMLPresentationElement::isFlowContent):
(WebCore::MathMLPresentationElement::cachedBooleanAttribute):
(WebCore::MathMLPresentationElement::parseNumberAndUnit):
(WebCore::MathMLPresentationElement::parseNamedSpace):
(WebCore::MathMLPresentationElement::parseMathMLLength):
(WebCore::MathMLPresentationElement::cachedMathMLLength):
(WebCore::MathMLPresentationElement::specifiedDisplayStyle):
(WebCore::MathMLPresentationElement::parseMathVariantAttribute):
(WebCore::MathMLPresentationElement::specifiedMathVariant):
* mathml/MathMLPresentationElement.h:
(WebCore::MathMLPresentationElement::toOptionalBool):
(WebCore::MathMLPresentationElement::acceptsMathVariantAttribute):</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCoremathmlMathMLElementcpp">trunk/Source/WebCore/mathml/MathMLElement.cpp</a></li>
<li><a href="#trunkSourceWebCoremathmlMathMLElementh">trunk/Source/WebCore/mathml/MathMLElement.h</a></li>
<li><a href="#trunkSourceWebCoremathmlMathMLPresentationElementcpp">trunk/Source/WebCore/mathml/MathMLPresentationElement.cpp</a></li>
<li><a href="#trunkSourceWebCoremathmlMathMLPresentationElementh">trunk/Source/WebCore/mathml/MathMLPresentationElement.h</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (205205 => 205206)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2016-08-30 22:49:45 UTC (rev 205205)
+++ trunk/Source/WebCore/ChangeLog        2016-08-30 22:54:41 UTC (rev 205206)
</span><span class="lines">@@ -1,5 +1,53 @@
</span><span class="cx"> 2016-08-30  Frederic Wang  &lt;fwang@igalia.com&gt;
</span><span class="cx"> 
</span><ins>+        Move some code from MathMLElement to MathMLPresentationElement
+        https://bugs.webkit.org/show_bug.cgi?id=161377
+
+        Reviewed by Darin Adler.
+
+        The following code is only used in presentation MathML classes. We then move it from
+        MathMLElement to MathMLPresentationElement:
+        - testing whether a child is a phrasing/flow element.
+        - parsing of length attributes.
+        - parsing of boolean attributes.
+        - parsing of mathvariant attributes.
+
+        No new tests, already covered by existing tests.
+
+        * mathml/MathMLElement.cpp:
+        (WebCore::MathMLElement::isPhrasingContent): Deleted.
+        (WebCore::MathMLElement::isFlowContent): Deleted.
+        (WebCore::MathMLElement::parseNumberAndUnit): Deleted.
+        (WebCore::MathMLElement::parseNamedSpace): Deleted.
+        (WebCore::MathMLElement::parseMathMLLength): Deleted.
+        (WebCore::MathMLElement::cachedMathMLLength): Deleted.
+        (WebCore::MathMLElement::cachedBooleanAttribute): Deleted.
+        (WebCore::MathMLElement::parseMathVariantAttribute): Deleted.
+        (WebCore::MathMLElement::specifiedDisplayStyle): Deleted.
+        (WebCore::MathMLElement::specifiedMathVariant): Deleted.
+        * mathml/MathMLElement.h:
+        (WebCore::MathMLElement::specifiedDisplayStyle):
+        (WebCore::MathMLElement::specifiedMathVariant):
+        (WebCore::MathMLElement::acceptsDisplayStyleAttribute): Deleted.
+        (WebCore::MathMLElement::acceptsMathVariantAttribute): Deleted.
+        (WebCore::MathMLElement::toOptionalBool): Deleted.
+        * mathml/MathMLPresentationElement.cpp:
+        (WebCore::MathMLPresentationElement::isPhrasingContent):
+        (WebCore::MathMLPresentationElement::isFlowContent):
+        (WebCore::MathMLPresentationElement::cachedBooleanAttribute):
+        (WebCore::MathMLPresentationElement::parseNumberAndUnit):
+        (WebCore::MathMLPresentationElement::parseNamedSpace):
+        (WebCore::MathMLPresentationElement::parseMathMLLength):
+        (WebCore::MathMLPresentationElement::cachedMathMLLength):
+        (WebCore::MathMLPresentationElement::specifiedDisplayStyle):
+        (WebCore::MathMLPresentationElement::parseMathVariantAttribute):
+        (WebCore::MathMLPresentationElement::specifiedMathVariant):
+        * mathml/MathMLPresentationElement.h:
+        (WebCore::MathMLPresentationElement::toOptionalBool):
+        (WebCore::MathMLPresentationElement::acceptsMathVariantAttribute):
+
+2016-08-30  Frederic Wang  &lt;fwang@igalia.com&gt;
+
</ins><span class="cx">         Introduce a MathMLUnknownElement class
</span><span class="cx">         https://bugs.webkit.org/show_bug.cgi?id=161298
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebCoremathmlMathMLElementcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/mathml/MathMLElement.cpp (205205 => 205206)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/mathml/MathMLElement.cpp        2016-08-30 22:49:45 UTC (rev 205205)
+++ trunk/Source/WebCore/mathml/MathMLElement.cpp        2016-08-30 22:54:41 UTC (rev 205206)
</span><span class="lines">@@ -31,24 +31,12 @@
</span><span class="cx"> 
</span><span class="cx"> #if ENABLE(MATHML)
</span><span class="cx"> 
</span><del>-#include &quot;ElementIterator.h&quot;
-#include &quot;Event.h&quot;
</del><span class="cx"> #include &quot;EventHandler.h&quot;
</span><span class="cx"> #include &quot;HTMLAnchorElement.h&quot;
</span><del>-#include &quot;HTMLElement.h&quot;
-#include &quot;HTMLHtmlElement.h&quot;
-#include &quot;HTMLMapElement.h&quot;
-#include &quot;HTMLNames.h&quot;
</del><span class="cx"> #include &quot;HTMLParserIdioms.h&quot;
</span><del>-#include &quot;MathMLMathElement.h&quot;
</del><span class="cx"> #include &quot;MathMLNames.h&quot;
</span><del>-#include &quot;MathMLSelectElement.h&quot;
</del><span class="cx"> #include &quot;MouseEvent.h&quot;
</span><span class="cx"> #include &quot;RenderTableCell.h&quot;
</span><del>-#include &quot;SVGElement.h&quot;
-#include &quot;SVGNames.h&quot;
-#include &quot;SVGSVGElement.h&quot;
-#include &quot;XLinkNames.h&quot;
</del><span class="cx"> 
</span><span class="cx"> namespace WebCore {
</span><span class="cx"> 
</span><span class="lines">@@ -64,124 +52,6 @@
</span><span class="cx">     return adoptRef(*new MathMLElement(tagName, document));
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-bool MathMLElement::isPhrasingContent(const Node&amp; node) const
-{
-    // Phrasing content is described in the HTML 5 specification:
-    // http://www.w3.org/TR/html5/dom.html#phrasing-content.
-
-    if (!node.isElementNode())
-        return node.isTextNode();
-
-    if (is&lt;MathMLElement&gt;(node)) {
-        auto&amp; mathmlElement = downcast&lt;MathMLElement&gt;(node);
-        return is&lt;MathMLMathElement&gt;(mathmlElement);
-    }
-
-    if (is&lt;SVGElement&gt;(node)) {
-        auto&amp; svgElement = downcast&lt;SVGElement&gt;(node);
-        return is&lt;SVGSVGElement&gt;(svgElement);
-    }
-
-    if (is&lt;HTMLElement&gt;(node)) {
-        // FIXME: add the &lt;data&gt; and &lt;time&gt; tags when they are implemented.
-        auto&amp; htmlElement = downcast&lt;HTMLElement&gt;(node);
-        return htmlElement.hasTagName(HTMLNames::aTag)
-            || htmlElement.hasTagName(HTMLNames::abbrTag)
-            || (htmlElement.hasTagName(HTMLNames::areaTag) &amp;&amp; ancestorsOfType&lt;HTMLMapElement&gt;(htmlElement).first())
-            || htmlElement.hasTagName(HTMLNames::audioTag)
-            || htmlElement.hasTagName(HTMLNames::bTag)
-            || htmlElement.hasTagName(HTMLNames::bdiTag)
-            || htmlElement.hasTagName(HTMLNames::bdoTag)
-            || htmlElement.hasTagName(HTMLNames::brTag)
-            || htmlElement.hasTagName(HTMLNames::buttonTag)
-            || htmlElement.hasTagName(HTMLNames::canvasTag)
-            || htmlElement.hasTagName(HTMLNames::citeTag)
-            || htmlElement.hasTagName(HTMLNames::codeTag)
-            || htmlElement.hasTagName(HTMLNames::datalistTag)
-            || htmlElement.hasTagName(HTMLNames::delTag)
-            || htmlElement.hasTagName(HTMLNames::dfnTag)
-            || htmlElement.hasTagName(HTMLNames::emTag)
-            || htmlElement.hasTagName(HTMLNames::embedTag)
-            || htmlElement.hasTagName(HTMLNames::iTag)
-            || htmlElement.hasTagName(HTMLNames::iframeTag)
-            || htmlElement.hasTagName(HTMLNames::imgTag)
-            || htmlElement.hasTagName(HTMLNames::inputTag)
-            || htmlElement.hasTagName(HTMLNames::insTag)
-            || htmlElement.hasTagName(HTMLNames::kbdTag)
-            || htmlElement.hasTagName(HTMLNames::keygenTag)
-            || htmlElement.hasTagName(HTMLNames::labelTag)
-            || htmlElement.hasTagName(HTMLNames::mapTag)
-            || htmlElement.hasTagName(HTMLNames::markTag)
-            || htmlElement.hasTagName(HTMLNames::meterTag)
-            || htmlElement.hasTagName(HTMLNames::noscriptTag)
-            || htmlElement.hasTagName(HTMLNames::objectTag)
-            || htmlElement.hasTagName(HTMLNames::outputTag)
-            || htmlElement.hasTagName(HTMLNames::progressTag)
-            || htmlElement.hasTagName(HTMLNames::qTag)
-            || htmlElement.hasTagName(HTMLNames::rubyTag)
-            || htmlElement.hasTagName(HTMLNames::sTag)
-            || htmlElement.hasTagName(HTMLNames::sampTag)
-            || htmlElement.hasTagName(HTMLNames::scriptTag)
-            || htmlElement.hasTagName(HTMLNames::selectTag)
-            || htmlElement.hasTagName(HTMLNames::smallTag)
-            || htmlElement.hasTagName(HTMLNames::spanTag)
-            || htmlElement.hasTagName(HTMLNames::strongTag)
-            || htmlElement.hasTagName(HTMLNames::subTag)
-            || htmlElement.hasTagName(HTMLNames::supTag)
-            || htmlElement.hasTagName(HTMLNames::templateTag)
-            || htmlElement.hasTagName(HTMLNames::textareaTag)
-            || htmlElement.hasTagName(HTMLNames::uTag)
-            || htmlElement.hasTagName(HTMLNames::varTag)
-            || htmlElement.hasTagName(HTMLNames::videoTag)
-            || htmlElement.hasTagName(HTMLNames::wbrTag);
-    }
-
-    return false;
-}
-
-bool MathMLElement::isFlowContent(const Node&amp; node) const
-{
-    // Flow content is described in the HTML 5 specification:
-    // http://www.w3.org/TR/html5/dom.html#flow-content
-
-    if (isPhrasingContent(node))
-        return true;
-
-    if (!is&lt;HTMLElement&gt;(node))
-        return false;
-
-    auto&amp; htmlElement = downcast&lt;HTMLElement&gt;(node);
-    // FIXME add the &lt;dialog&gt; tag when it is implemented.
-    return htmlElement.hasTagName(HTMLNames::addressTag)
-        || htmlElement.hasTagName(HTMLNames::articleTag)
-        || htmlElement.hasTagName(HTMLNames::asideTag)
-        || htmlElement.hasTagName(HTMLNames::blockquoteTag)
-        || htmlElement.hasTagName(HTMLNames::detailsTag)
-        || htmlElement.hasTagName(HTMLNames::divTag)
-        || htmlElement.hasTagName(HTMLNames::dlTag)
-        || htmlElement.hasTagName(HTMLNames::fieldsetTag)
-        || htmlElement.hasTagName(HTMLNames::figureTag)
-        || htmlElement.hasTagName(HTMLNames::footerTag)
-        || htmlElement.hasTagName(HTMLNames::formTag)
-        || htmlElement.hasTagName(HTMLNames::h1Tag)
-        || htmlElement.hasTagName(HTMLNames::h2Tag)
-        || htmlElement.hasTagName(HTMLNames::h3Tag)
-        || htmlElement.hasTagName(HTMLNames::h4Tag)
-        || htmlElement.hasTagName(HTMLNames::h5Tag)
-        || htmlElement.hasTagName(HTMLNames::h6Tag)
-        || htmlElement.hasTagName(HTMLNames::headerTag)
-        || htmlElement.hasTagName(HTMLNames::hrTag)
-        || htmlElement.hasTagName(HTMLNames::mainTag)
-        || htmlElement.hasTagName(HTMLNames::navTag)
-        || htmlElement.hasTagName(HTMLNames::olTag)
-        || htmlElement.hasTagName(HTMLNames::pTag)
-        || htmlElement.hasTagName(HTMLNames::preTag)
-        || htmlElement.hasTagName(HTMLNames::sectionTag)
-        || (htmlElement.hasTagName(HTMLNames::styleTag) &amp;&amp; htmlElement.hasAttribute(&quot;scoped&quot;))
-        || htmlElement.hasTagName(HTMLNames::tableTag)
-        || htmlElement.hasTagName(HTMLNames::ulTag);
-}
-
</del><span class="cx"> unsigned MathMLElement::colSpan() const
</span><span class="cx"> {
</span><span class="cx">     if (!hasTagName(mtdTag))
</span><span class="lines">@@ -356,197 +226,6 @@
</span><span class="cx">     return stringView.substring(start, stringLength);
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-MathMLElement::Length MathMLElement::parseNumberAndUnit(const StringView&amp; string)
-{
-    LengthType lengthType = LengthType::UnitLess;
-    unsigned stringLength = string.length();
-    UChar lastChar = string[stringLength - 1];
-    if (lastChar == '%') {
-        lengthType = LengthType::Percentage;
-        stringLength--;
-    } else if (stringLength &gt;= 2) {
-        UChar penultimateChar = string[stringLength - 2];
-        if (penultimateChar == 'c' &amp;&amp; lastChar == 'm')
-            lengthType = LengthType::Cm;
-        if (penultimateChar == 'e' &amp;&amp; lastChar == 'm')
-            lengthType = LengthType::Em;
-        else if (penultimateChar == 'e' &amp;&amp; lastChar == 'x')
-            lengthType = LengthType::Ex;
-        else if (penultimateChar == 'i' &amp;&amp; lastChar == 'n')
-            lengthType = LengthType::In;
-        else if (penultimateChar == 'm' &amp;&amp; lastChar == 'm')
-            lengthType = LengthType::Mm;
-        else if (penultimateChar == 'p' &amp;&amp; lastChar == 'c')
-            lengthType = LengthType::Pc;
-        else if (penultimateChar == 'p' &amp;&amp; lastChar == 't')
-            lengthType = LengthType::Pt;
-        else if (penultimateChar == 'p' &amp;&amp; lastChar == 'x')
-            lengthType = LengthType::Px;
-
-        if (lengthType != LengthType::UnitLess)
-            stringLength -= 2;
-    }
-
-    bool ok;
-    float lengthValue = string.substring(0, stringLength).toFloat(ok);
-    if (!ok)
-        return Length();
-
-    Length length;
-    length.type = lengthType;
-    length.value = lengthValue;
-    return length;
</del><span class="cx"> }
</span><span class="cx"> 
</span><del>-MathMLElement::Length MathMLElement::parseNamedSpace(const StringView&amp; string)
-{
-    // Named space values are case-sensitive.
-    int namedSpaceValue;
-    if (string == &quot;veryverythinmathspace&quot;)
-        namedSpaceValue = 1;
-    else if (string == &quot;verythinmathspace&quot;)
-        namedSpaceValue = 2;
-    else if (string == &quot;thinmathspace&quot;)
-        namedSpaceValue = 3;
-    else if (string == &quot;mediummathspace&quot;)
-        namedSpaceValue = 4;
-    else if (string == &quot;thickmathspace&quot;)
-        namedSpaceValue = 5;
-    else if (string == &quot;verythickmathspace&quot;)
-        namedSpaceValue = 6;
-    else if (string == &quot;veryverythickmathspace&quot;)
-        namedSpaceValue = 7;
-    else if (string == &quot;negativeveryverythinmathspace&quot;)
-        namedSpaceValue = -1;
-    else if (string == &quot;negativeverythinmathspace&quot;)
-        namedSpaceValue = -2;
-    else if (string == &quot;negativethinmathspace&quot;)
-        namedSpaceValue = -3;
-    else if (string == &quot;negativemediummathspace&quot;)
-        namedSpaceValue = -4;
-    else if (string == &quot;negativethickmathspace&quot;)
-        namedSpaceValue = -5;
-    else if (string == &quot;negativeverythickmathspace&quot;)
-        namedSpaceValue = -6;
-    else if (string == &quot;negativeveryverythickmathspace&quot;)
-        namedSpaceValue = -7;
-    else
-        return Length();
-
-    Length length;
-    length.type = LengthType::MathUnit;
-    length.value = namedSpaceValue;
-    return length;
-}
-
-MathMLElement::Length MathMLElement::parseMathMLLength(const String&amp; string)
-{
-    // The regular expression from the MathML Relax NG schema is as follows:
-    //
-    //   pattern = '\s*((-?[0-9]*([0-9]\.?|\.[0-9])[0-9]*(e[mx]|in|cm|mm|p[xtc]|%)?)|(negative)?((very){0,2}thi(n|ck)|medium)mathspace)\s*'
-    //
-    // We do not perform a strict verification of the syntax of whitespaces and number.
-    // Instead, we just use isHTMLSpace and toFloat to parse these parts.
-
-    // We first skip whitespace from both ends of the string.
-    StringView stringView = stripLeadingAndTrailingWhitespace(string);
-
-    if (stringView.isEmpty())
-        return Length();
-
-    // We consider the most typical case: a number followed by an optional unit.
-    UChar firstChar = stringView[0];
-    if (isASCIIDigit(firstChar) || firstChar == '-' || firstChar == '.')
-        return parseNumberAndUnit(stringView);
-
-    // Otherwise, we try and parse a named space.
-    return parseNamedSpace(stringView);
-}
-
-const MathMLElement::Length&amp; MathMLElement::cachedMathMLLength(const QualifiedName&amp; name, Optional&lt;Length&gt;&amp; length)
-{
-    if (length)
-        return length.value();
-    length = parseMathMLLength(attributeWithoutSynchronization(name));
-    return length.value();
-}
-
-const MathMLElement::BooleanValue&amp; MathMLElement::cachedBooleanAttribute(const QualifiedName&amp; name, Optional&lt;BooleanValue&gt;&amp; attribute)
-{
-    if (attribute)
-        return attribute.value();
-
-    // In MathML, attribute values are case-sensitive.
-    const AtomicString&amp; value = attributeWithoutSynchronization(name);
-    if (value == &quot;true&quot;)
-        attribute = BooleanValue::True;
-    else if (value == &quot;false&quot;)
-        attribute = BooleanValue::False;
-    else
-        attribute = BooleanValue::Default;
-
-    return attribute.value();
-}
-
-MathMLElement::MathVariant MathMLElement::parseMathVariantAttribute(const AtomicString&amp; attributeValue)
-{
-    // The mathvariant attribute values is case-sensitive.
-    if (attributeValue == &quot;normal&quot;)
-        return MathVariant::Normal;
-    if (attributeValue == &quot;bold&quot;)
-        return MathVariant::Bold;
-    if (attributeValue == &quot;italic&quot;)
-        return MathVariant::Italic;
-    if (attributeValue == &quot;bold-italic&quot;)
-        return MathVariant::BoldItalic;
-    if (attributeValue == &quot;double-struck&quot;)
-        return MathVariant::DoubleStruck;
-    if (attributeValue == &quot;bold-fraktur&quot;)
-        return MathVariant::BoldFraktur;
-    if (attributeValue == &quot;script&quot;)
-        return MathVariant::Script;
-    if (attributeValue == &quot;bold-script&quot;)
-        return MathVariant::BoldScript;
-    if (attributeValue == &quot;fraktur&quot;)
-        return MathVariant::Fraktur;
-    if (attributeValue == &quot;sans-serif&quot;)
-        return MathVariant::SansSerif;
-    if (attributeValue == &quot;bold-sans-serif&quot;)
-        return MathVariant::BoldSansSerif;
-    if (attributeValue == &quot;sans-serif-italic&quot;)
-        return MathVariant::SansSerifItalic;
-    if (attributeValue == &quot;sans-serif-bold-italic&quot;)
-        return MathVariant::SansSerifBoldItalic;
-    if (attributeValue == &quot;monospace&quot;)
-        return MathVariant::Monospace;
-    if (attributeValue == &quot;initial&quot;)
-        return MathVariant::Initial;
-    if (attributeValue == &quot;tailed&quot;)
-        return MathVariant::Tailed;
-    if (attributeValue == &quot;looped&quot;)
-        return MathVariant::Looped;
-    if (attributeValue == &quot;stretched&quot;)
-        return MathVariant::Stretched;
-    return MathVariant::None;
-}
-
-Optional&lt;bool&gt; MathMLElement::specifiedDisplayStyle()
-{
-    if (!acceptsDisplayStyleAttribute())
-        return Nullopt;
-    const MathMLElement::BooleanValue&amp; specifiedDisplayStyle = cachedBooleanAttribute(displaystyleAttr, m_displayStyle);
-    return toOptionalBool(specifiedDisplayStyle);
-}
-
-Optional&lt;MathMLElement::MathVariant&gt; MathMLElement::specifiedMathVariant()
-{
-    if (!acceptsMathVariantAttribute())
-        return Nullopt;
-    if (!m_mathVariant)
-        m_mathVariant = parseMathVariantAttribute(attributeWithoutSynchronization(mathvariantAttr));
-    return m_mathVariant.value() == MathVariant::None ? Nullopt : m_mathVariant;
-}
-
-}
-
</del><span class="cx"> #endif // ENABLE(MATHML)
</span></span></pre></div>
<a id="trunkSourceWebCoremathmlMathMLElementh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/mathml/MathMLElement.h (205205 => 205206)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/mathml/MathMLElement.h        2016-08-30 22:49:45 UTC (rev 205205)
+++ trunk/Source/WebCore/mathml/MathMLElement.h        2016-08-30 22:54:41 UTC (rev 205206)
</span><span class="lines">@@ -56,7 +56,6 @@
</span><span class="cx">         LengthType type { LengthType::ParsingFailed };
</span><span class="cx">         float value { 0 };
</span><span class="cx">     };
</span><del>-    static Length parseMathMLLength(const String&amp;);
</del><span class="cx"> 
</span><span class="cx">     enum class BooleanValue { True, False, Default };
</span><span class="cx"> 
</span><span class="lines">@@ -85,8 +84,8 @@
</span><span class="cx">         Stretched = 18
</span><span class="cx">     };
</span><span class="cx"> 
</span><del>-    virtual Optional&lt;bool&gt; specifiedDisplayStyle();
-    Optional&lt;MathVariant&gt; specifiedMathVariant();
</del><ins>+    virtual Optional&lt;bool&gt; specifiedDisplayStyle() { return Nullopt; }
+    virtual Optional&lt;MathVariant&gt; specifiedMathVariant() { return Nullopt; }
</ins><span class="cx"> 
</span><span class="cx">     virtual void updateSelectedChild() { }
</span><span class="cx"> 
</span><span class="lines">@@ -101,27 +100,10 @@
</span><span class="cx">     bool isPresentationAttribute(const QualifiedName&amp;) const override;
</span><span class="cx">     void collectStyleForPresentationAttribute(const QualifiedName&amp;, const AtomicString&amp;, MutableStyleProperties&amp;) override;
</span><span class="cx"> 
</span><del>-    bool isPhrasingContent(const Node&amp;) const;
-    bool isFlowContent(const Node&amp;) const;
-
</del><span class="cx">     bool willRespondToMouseClickEvents() override;
</span><span class="cx">     void defaultEventHandler(Event*) override;
</span><span class="cx"> 
</span><del>-    const Length&amp; cachedMathMLLength(const QualifiedName&amp;, Optional&lt;Length&gt;&amp;);
-    const BooleanValue&amp; cachedBooleanAttribute(const QualifiedName&amp;, Optional&lt;BooleanValue&gt;&amp;);
-
-    virtual bool acceptsDisplayStyleAttribute() { return false; }
-    virtual bool acceptsMathVariantAttribute() { return false; }
-
-    static Optional&lt;bool&gt; toOptionalBool(const BooleanValue&amp; value) { return value == BooleanValue::Default ? Nullopt : Optional&lt;bool&gt;(value == BooleanValue::True); }
-    Optional&lt;BooleanValue&gt; m_displayStyle;
-    Optional&lt;MathVariant&gt; m_mathVariant;
-
</del><span class="cx"> private:
</span><del>-    static Length parseNumberAndUnit(const StringView&amp;);
-    static Length parseNamedSpace(const StringView&amp;);
-    static MathVariant parseMathVariantAttribute(const AtomicString&amp; attributeValue);
-
</del><span class="cx">     bool canStartSelection() const final;
</span><span class="cx">     bool isFocusable() const final;
</span><span class="cx">     bool isKeyboardFocusable(KeyboardEvent*) const final;
</span></span></pre></div>
<a id="trunkSourceWebCoremathmlMathMLPresentationElementcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/mathml/MathMLPresentationElement.cpp (205205 => 205206)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/mathml/MathMLPresentationElement.cpp        2016-08-30 22:49:45 UTC (rev 205205)
+++ trunk/Source/WebCore/mathml/MathMLPresentationElement.cpp        2016-08-30 22:54:41 UTC (rev 205206)
</span><span class="lines">@@ -30,8 +30,17 @@
</span><span class="cx"> 
</span><span class="cx"> #if ENABLE(MATHML)
</span><span class="cx"> 
</span><ins>+#include &quot;ElementIterator.h&quot;
+#include &quot;HTMLHtmlElement.h&quot;
+#include &quot;HTMLMapElement.h&quot;
+#include &quot;HTMLNames.h&quot;
+#include &quot;HTMLParserIdioms.h&quot;
+#include &quot;MathMLMathElement.h&quot;
</ins><span class="cx"> #include &quot;MathMLNames.h&quot;
</span><span class="cx"> #include &quot;RenderMathMLBlock.h&quot;
</span><ins>+#include &quot;RenderTableCell.h&quot;
+#include &quot;SVGNames.h&quot;
+#include &quot;SVGSVGElement.h&quot;
</ins><span class="cx"> 
</span><span class="cx"> namespace WebCore {
</span><span class="cx"> 
</span><span class="lines">@@ -55,11 +64,320 @@
</span><span class="cx">     return MathMLElement::createElementRenderer(WTFMove(style), insertionPosition);
</span><span class="cx"> }
</span><span class="cx"> 
</span><ins>+bool MathMLPresentationElement::isPhrasingContent(const Node&amp; node)
+{
+    // Phrasing content is described in the HTML 5 specification:
+    // http://www.w3.org/TR/html5/dom.html#phrasing-content.
+
+    if (!node.isElementNode())
+        return node.isTextNode();
+
+    if (is&lt;MathMLElement&gt;(node)) {
+        auto&amp; mathmlElement = downcast&lt;MathMLElement&gt;(node);
+        return is&lt;MathMLMathElement&gt;(mathmlElement);
+    }
+
+    if (is&lt;SVGElement&gt;(node)) {
+        auto&amp; svgElement = downcast&lt;SVGElement&gt;(node);
+        return is&lt;SVGSVGElement&gt;(svgElement);
+    }
+
+    if (is&lt;HTMLElement&gt;(node)) {
+        // FIXME: add the &lt;data&gt; and &lt;time&gt; tags when they are implemented.
+        auto&amp; htmlElement = downcast&lt;HTMLElement&gt;(node);
+        return htmlElement.hasTagName(HTMLNames::aTag)
+            || htmlElement.hasTagName(HTMLNames::abbrTag)
+            || (htmlElement.hasTagName(HTMLNames::areaTag) &amp;&amp; ancestorsOfType&lt;HTMLMapElement&gt;(htmlElement).first())
+            || htmlElement.hasTagName(HTMLNames::audioTag)
+            || htmlElement.hasTagName(HTMLNames::bTag)
+            || htmlElement.hasTagName(HTMLNames::bdiTag)
+            || htmlElement.hasTagName(HTMLNames::bdoTag)
+            || htmlElement.hasTagName(HTMLNames::brTag)
+            || htmlElement.hasTagName(HTMLNames::buttonTag)
+            || htmlElement.hasTagName(HTMLNames::canvasTag)
+            || htmlElement.hasTagName(HTMLNames::citeTag)
+            || htmlElement.hasTagName(HTMLNames::codeTag)
+            || htmlElement.hasTagName(HTMLNames::datalistTag)
+            || htmlElement.hasTagName(HTMLNames::delTag)
+            || htmlElement.hasTagName(HTMLNames::dfnTag)
+            || htmlElement.hasTagName(HTMLNames::emTag)
+            || htmlElement.hasTagName(HTMLNames::embedTag)
+            || htmlElement.hasTagName(HTMLNames::iTag)
+            || htmlElement.hasTagName(HTMLNames::iframeTag)
+            || htmlElement.hasTagName(HTMLNames::imgTag)
+            || htmlElement.hasTagName(HTMLNames::inputTag)
+            || htmlElement.hasTagName(HTMLNames::insTag)
+            || htmlElement.hasTagName(HTMLNames::kbdTag)
+            || htmlElement.hasTagName(HTMLNames::keygenTag)
+            || htmlElement.hasTagName(HTMLNames::labelTag)
+            || htmlElement.hasTagName(HTMLNames::mapTag)
+            || htmlElement.hasTagName(HTMLNames::markTag)
+            || htmlElement.hasTagName(HTMLNames::meterTag)
+            || htmlElement.hasTagName(HTMLNames::noscriptTag)
+            || htmlElement.hasTagName(HTMLNames::objectTag)
+            || htmlElement.hasTagName(HTMLNames::outputTag)
+            || htmlElement.hasTagName(HTMLNames::progressTag)
+            || htmlElement.hasTagName(HTMLNames::qTag)
+            || htmlElement.hasTagName(HTMLNames::rubyTag)
+            || htmlElement.hasTagName(HTMLNames::sTag)
+            || htmlElement.hasTagName(HTMLNames::sampTag)
+            || htmlElement.hasTagName(HTMLNames::scriptTag)
+            || htmlElement.hasTagName(HTMLNames::selectTag)
+            || htmlElement.hasTagName(HTMLNames::smallTag)
+            || htmlElement.hasTagName(HTMLNames::spanTag)
+            || htmlElement.hasTagName(HTMLNames::strongTag)
+            || htmlElement.hasTagName(HTMLNames::subTag)
+            || htmlElement.hasTagName(HTMLNames::supTag)
+            || htmlElement.hasTagName(HTMLNames::templateTag)
+            || htmlElement.hasTagName(HTMLNames::textareaTag)
+            || htmlElement.hasTagName(HTMLNames::uTag)
+            || htmlElement.hasTagName(HTMLNames::varTag)
+            || htmlElement.hasTagName(HTMLNames::videoTag)
+            || htmlElement.hasTagName(HTMLNames::wbrTag);
+    }
+
+    return false;
+}
+
+bool MathMLPresentationElement::isFlowContent(const Node&amp; node)
+{
+    // Flow content is described in the HTML 5 specification:
+    // http://www.w3.org/TR/html5/dom.html#flow-content
+
+    if (isPhrasingContent(node))
+        return true;
+
+    if (!is&lt;HTMLElement&gt;(node))
+        return false;
+
+    auto&amp; htmlElement = downcast&lt;HTMLElement&gt;(node);
+    // FIXME add the &lt;dialog&gt; tag when it is implemented.
+    return htmlElement.hasTagName(HTMLNames::addressTag)
+        || htmlElement.hasTagName(HTMLNames::articleTag)
+        || htmlElement.hasTagName(HTMLNames::asideTag)
+        || htmlElement.hasTagName(HTMLNames::blockquoteTag)
+        || htmlElement.hasTagName(HTMLNames::detailsTag)
+        || htmlElement.hasTagName(HTMLNames::divTag)
+        || htmlElement.hasTagName(HTMLNames::dlTag)
+        || htmlElement.hasTagName(HTMLNames::fieldsetTag)
+        || htmlElement.hasTagName(HTMLNames::figureTag)
+        || htmlElement.hasTagName(HTMLNames::footerTag)
+        || htmlElement.hasTagName(HTMLNames::formTag)
+        || htmlElement.hasTagName(HTMLNames::h1Tag)
+        || htmlElement.hasTagName(HTMLNames::h2Tag)
+        || htmlElement.hasTagName(HTMLNames::h3Tag)
+        || htmlElement.hasTagName(HTMLNames::h4Tag)
+        || htmlElement.hasTagName(HTMLNames::h5Tag)
+        || htmlElement.hasTagName(HTMLNames::h6Tag)
+        || htmlElement.hasTagName(HTMLNames::headerTag)
+        || htmlElement.hasTagName(HTMLNames::hrTag)
+        || htmlElement.hasTagName(HTMLNames::mainTag)
+        || htmlElement.hasTagName(HTMLNames::navTag)
+        || htmlElement.hasTagName(HTMLNames::olTag)
+        || htmlElement.hasTagName(HTMLNames::pTag)
+        || htmlElement.hasTagName(HTMLNames::preTag)
+        || htmlElement.hasTagName(HTMLNames::sectionTag)
+        || (htmlElement.hasTagName(HTMLNames::styleTag) &amp;&amp; htmlElement.hasAttribute(&quot;scoped&quot;))
+        || htmlElement.hasTagName(HTMLNames::tableTag)
+        || htmlElement.hasTagName(HTMLNames::ulTag);
+}
+
+const MathMLElement::BooleanValue&amp; MathMLPresentationElement::cachedBooleanAttribute(const QualifiedName&amp; name, Optional&lt;BooleanValue&gt;&amp; attribute)
+{
+    if (attribute)
+        return attribute.value();
+
+    // In MathML, attribute values are case-sensitive.
+    const AtomicString&amp; value = attributeWithoutSynchronization(name);
+    if (value == &quot;true&quot;)
+        attribute = BooleanValue::True;
+    else if (value == &quot;false&quot;)
+        attribute = BooleanValue::False;
+    else
+        attribute = BooleanValue::Default;
+
+    return attribute.value();
+}
+
+MathMLElement::Length MathMLPresentationElement::parseNumberAndUnit(const StringView&amp; string)
+{
+    LengthType lengthType = LengthType::UnitLess;
+    unsigned stringLength = string.length();
+    UChar lastChar = string[stringLength - 1];
+    if (lastChar == '%') {
+        lengthType = LengthType::Percentage;
+        stringLength--;
+    } else if (stringLength &gt;= 2) {
+        UChar penultimateChar = string[stringLength - 2];
+        if (penultimateChar == 'c' &amp;&amp; lastChar == 'm')
+            lengthType = LengthType::Cm;
+        if (penultimateChar == 'e' &amp;&amp; lastChar == 'm')
+            lengthType = LengthType::Em;
+        else if (penultimateChar == 'e' &amp;&amp; lastChar == 'x')
+            lengthType = LengthType::Ex;
+        else if (penultimateChar == 'i' &amp;&amp; lastChar == 'n')
+            lengthType = LengthType::In;
+        else if (penultimateChar == 'm' &amp;&amp; lastChar == 'm')
+            lengthType = LengthType::Mm;
+        else if (penultimateChar == 'p' &amp;&amp; lastChar == 'c')
+            lengthType = LengthType::Pc;
+        else if (penultimateChar == 'p' &amp;&amp; lastChar == 't')
+            lengthType = LengthType::Pt;
+        else if (penultimateChar == 'p' &amp;&amp; lastChar == 'x')
+            lengthType = LengthType::Px;
+
+        if (lengthType != LengthType::UnitLess)
+            stringLength -= 2;
+    }
+
+    bool ok;
+    float lengthValue = string.substring(0, stringLength).toFloat(ok);
+    if (!ok)
+        return Length();
+
+    Length length;
+    length.type = lengthType;
+    length.value = lengthValue;
+    return length;
+}
+
+MathMLElement::Length MathMLPresentationElement::parseNamedSpace(const StringView&amp; string)
+{
+    // Named space values are case-sensitive.
+    int namedSpaceValue;
+    if (string == &quot;veryverythinmathspace&quot;)
+        namedSpaceValue = 1;
+    else if (string == &quot;verythinmathspace&quot;)
+        namedSpaceValue = 2;
+    else if (string == &quot;thinmathspace&quot;)
+        namedSpaceValue = 3;
+    else if (string == &quot;mediummathspace&quot;)
+        namedSpaceValue = 4;
+    else if (string == &quot;thickmathspace&quot;)
+        namedSpaceValue = 5;
+    else if (string == &quot;verythickmathspace&quot;)
+        namedSpaceValue = 6;
+    else if (string == &quot;veryverythickmathspace&quot;)
+        namedSpaceValue = 7;
+    else if (string == &quot;negativeveryverythinmathspace&quot;)
+        namedSpaceValue = -1;
+    else if (string == &quot;negativeverythinmathspace&quot;)
+        namedSpaceValue = -2;
+    else if (string == &quot;negativethinmathspace&quot;)
+        namedSpaceValue = -3;
+    else if (string == &quot;negativemediummathspace&quot;)
+        namedSpaceValue = -4;
+    else if (string == &quot;negativethickmathspace&quot;)
+        namedSpaceValue = -5;
+    else if (string == &quot;negativeverythickmathspace&quot;)
+        namedSpaceValue = -6;
+    else if (string == &quot;negativeveryverythickmathspace&quot;)
+        namedSpaceValue = -7;
+    else
+        return Length();
+
+    Length length;
+    length.type = LengthType::MathUnit;
+    length.value = namedSpaceValue;
+    return length;
+}
+
+MathMLElement::Length MathMLPresentationElement::parseMathMLLength(const String&amp; string)
+{
+    // The regular expression from the MathML Relax NG schema is as follows:
+    //
+    //   pattern = '\s*((-?[0-9]*([0-9]\.?|\.[0-9])[0-9]*(e[mx]|in|cm|mm|p[xtc]|%)?)|(negative)?((very){0,2}thi(n|ck)|medium)mathspace)\s*'
+    //
+    // We do not perform a strict verification of the syntax of whitespaces and number.
+    // Instead, we just use isHTMLSpace and toFloat to parse these parts.
+
+    // We first skip whitespace from both ends of the string.
+    StringView stringView = stripLeadingAndTrailingWhitespace(string);
+
+    if (stringView.isEmpty())
+        return Length();
+
+    // We consider the most typical case: a number followed by an optional unit.
+    UChar firstChar = stringView[0];
+    if (isASCIIDigit(firstChar) || firstChar == '-' || firstChar == '.')
+        return parseNumberAndUnit(stringView);
+
+    // Otherwise, we try and parse a named space.
+    return parseNamedSpace(stringView);
+}
+
+const MathMLElement::Length&amp; MathMLPresentationElement::cachedMathMLLength(const QualifiedName&amp; name, Optional&lt;Length&gt;&amp; length)
+{
+    if (length)
+        return length.value();
+    length = parseMathMLLength(attributeWithoutSynchronization(name));
+    return length.value();
+}
+
</ins><span class="cx"> bool MathMLPresentationElement::acceptsDisplayStyleAttribute()
</span><span class="cx"> {
</span><span class="cx">     return hasTagName(mtableTag);
</span><span class="cx"> }
</span><span class="cx"> 
</span><ins>+Optional&lt;bool&gt; MathMLPresentationElement::specifiedDisplayStyle()
+{
+    if (!acceptsDisplayStyleAttribute())
+        return Nullopt;
+    const MathMLElement::BooleanValue&amp; specifiedDisplayStyle = cachedBooleanAttribute(displaystyleAttr, m_displayStyle);
+    return toOptionalBool(specifiedDisplayStyle);
+}
+
+MathMLElement::MathVariant MathMLPresentationElement::parseMathVariantAttribute(const AtomicString&amp; attributeValue)
+{
+    // The mathvariant attribute values is case-sensitive.
+    if (attributeValue == &quot;normal&quot;)
+        return MathVariant::Normal;
+    if (attributeValue == &quot;bold&quot;)
+        return MathVariant::Bold;
+    if (attributeValue == &quot;italic&quot;)
+        return MathVariant::Italic;
+    if (attributeValue == &quot;bold-italic&quot;)
+        return MathVariant::BoldItalic;
+    if (attributeValue == &quot;double-struck&quot;)
+        return MathVariant::DoubleStruck;
+    if (attributeValue == &quot;bold-fraktur&quot;)
+        return MathVariant::BoldFraktur;
+    if (attributeValue == &quot;script&quot;)
+        return MathVariant::Script;
+    if (attributeValue == &quot;bold-script&quot;)
+        return MathVariant::BoldScript;
+    if (attributeValue == &quot;fraktur&quot;)
+        return MathVariant::Fraktur;
+    if (attributeValue == &quot;sans-serif&quot;)
+        return MathVariant::SansSerif;
+    if (attributeValue == &quot;bold-sans-serif&quot;)
+        return MathVariant::BoldSansSerif;
+    if (attributeValue == &quot;sans-serif-italic&quot;)
+        return MathVariant::SansSerifItalic;
+    if (attributeValue == &quot;sans-serif-bold-italic&quot;)
+        return MathVariant::SansSerifBoldItalic;
+    if (attributeValue == &quot;monospace&quot;)
+        return MathVariant::Monospace;
+    if (attributeValue == &quot;initial&quot;)
+        return MathVariant::Initial;
+    if (attributeValue == &quot;tailed&quot;)
+        return MathVariant::Tailed;
+    if (attributeValue == &quot;looped&quot;)
+        return MathVariant::Looped;
+    if (attributeValue == &quot;stretched&quot;)
+        return MathVariant::Stretched;
+    return MathVariant::None;
+}
+
+Optional&lt;MathMLElement::MathVariant&gt; MathMLPresentationElement::specifiedMathVariant()
+{
+    if (!acceptsMathVariantAttribute())
+        return Nullopt;
+    if (!m_mathVariant)
+        m_mathVariant = parseMathVariantAttribute(attributeWithoutSynchronization(mathvariantAttr));
+    return m_mathVariant.value() == MathVariant::None ? Nullopt : m_mathVariant;
+}
+
</ins><span class="cx"> void MathMLPresentationElement::parseAttribute(const QualifiedName&amp; name, const AtomicString&amp; value)
</span><span class="cx"> {
</span><span class="cx">     bool displayStyleAttribute = name == displaystyleAttr &amp;&amp; acceptsDisplayStyleAttribute();
</span></span></pre></div>
<a id="trunkSourceWebCoremathmlMathMLPresentationElementh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/mathml/MathMLPresentationElement.h (205205 => 205206)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/mathml/MathMLPresentationElement.h        2016-08-30 22:49:45 UTC (rev 205205)
+++ trunk/Source/WebCore/mathml/MathMLPresentationElement.h        2016-08-30 22:54:41 UTC (rev 205206)
</span><span class="lines">@@ -41,11 +41,31 @@
</span><span class="cx">     MathMLPresentationElement(const QualifiedName&amp; tagName, Document&amp;);
</span><span class="cx">     void parseAttribute(const QualifiedName&amp;, const AtomicString&amp;) override;
</span><span class="cx"> 
</span><del>-    bool acceptsDisplayStyleAttribute() override;
</del><ins>+    static bool isPhrasingContent(const Node&amp;);
+    static bool isFlowContent(const Node&amp;);
</ins><span class="cx"> 
</span><ins>+    static Optional&lt;bool&gt; toOptionalBool(const BooleanValue&amp; value) { return value == BooleanValue::Default ? Nullopt : Optional&lt;bool&gt;(value == BooleanValue::True); }
+    const BooleanValue&amp; cachedBooleanAttribute(const QualifiedName&amp;, Optional&lt;BooleanValue&gt;&amp;);
+
+    static Length parseMathMLLength(const String&amp;);
+    const Length&amp; cachedMathMLLength(const QualifiedName&amp;, Optional&lt;Length&gt;&amp;);
+
+    virtual bool acceptsDisplayStyleAttribute();
+    Optional&lt;bool&gt; specifiedDisplayStyle() override;
+
+    virtual bool acceptsMathVariantAttribute() { return false; }
+    Optional&lt;MathVariant&gt; specifiedMathVariant() final;
+
+    Optional&lt;BooleanValue&gt; m_displayStyle;
+    Optional&lt;MathVariant&gt; m_mathVariant;
+
</ins><span class="cx"> private:
</span><span class="cx">     RenderPtr&lt;RenderElement&gt; createElementRenderer(RenderStyle&amp;&amp;, const RenderTreePosition&amp;) override;
</span><span class="cx">     bool isPresentationMathML() const final { return true; }
</span><ins>+
+    static Length parseNumberAndUnit(const StringView&amp;);
+    static Length parseNamedSpace(const StringView&amp;);
+    static MathVariant parseMathVariantAttribute(const AtomicString&amp; attributeValue);
</ins><span class="cx"> };
</span><span class="cx"> 
</span><span class="cx"> }
</span></span></pre>
</div>
</div>

</body>
</html>