<!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>[204809] 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/204809">204809</a></dd>
<dt>Author</dt> <dd>fred.wang@free.fr</dd>
<dt>Date</dt> <dd>2016-08-23 04:36:28 -0700 (Tue, 23 Aug 2016)</dd>
</dl>

<h3>Log Message</h3>
<pre>Rename MathMLInlineContainerElement to MathMLPresentationElement
https://bugs.webkit.org/show_bug.cgi?id=161053

Patch by Frederic Wang &lt;fwang@igalia.com&gt; on 2016-08-23
Reviewed by Manuel Rego Casasnovas.

MathMLInlineContainerElement sounds a bad name for something that is now going to produce
RenderMathMLBlocks. MathML has two kinds of markup (presentation MathML and content MathML).
We only implement presentation MathML and most of the MathML elements are currently
implemented as MathMLInlineContainerElement. Hence we rename MathMLInlineContainerElement
to MathMLPresentationElement and will move more code from MathMLElement into that new class
in follow-up bugs. Also, other elements in the MathML namespace could be handled by a
separate MathMLUnknownElement class for consistency with SVG and HTML classes.

No new tests, behavior is unchanged.

* CMakeLists.txt: Rename MathMLInlineContainerElement to MathMLPresentationElement.
* WebCore.xcodeproj/project.pbxproj: Ditto.
* mathml/MathMLAllInOne.cpp: Ditto.
* mathml/MathMLFractionElement.cpp: Ditto.
* mathml/MathMLFractionElement.h: Ditto.
* mathml/MathMLPresentationElement.cpp: Ditto.
* mathml/MathMLPresentationElement.h: Ditto.
* mathml/MathMLRowElement.cpp: Ditto.
* mathml/MathMLRowElement.h: Ditto.
* mathml/MathMLScriptsElement.cpp: Ditto.
* mathml/MathMLScriptsElement.h: Ditto.
* mathml/mathtags.in: Ditto.
* rendering/mathml/RenderMathMLFraction.h: Remove useless include.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebCoreCMakeListstxt">trunk/Source/WebCore/CMakeLists.txt</a></li>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCoreWebCorexcodeprojprojectpbxproj">trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj</a></li>
<li><a href="#trunkSourceWebCoremathmlMathMLAllInOnecpp">trunk/Source/WebCore/mathml/MathMLAllInOne.cpp</a></li>
<li><a href="#trunkSourceWebCoremathmlMathMLFractionElementcpp">trunk/Source/WebCore/mathml/MathMLFractionElement.cpp</a></li>
<li><a href="#trunkSourceWebCoremathmlMathMLFractionElementh">trunk/Source/WebCore/mathml/MathMLFractionElement.h</a></li>
<li><a href="#trunkSourceWebCoremathmlMathMLRowElementcpp">trunk/Source/WebCore/mathml/MathMLRowElement.cpp</a></li>
<li><a href="#trunkSourceWebCoremathmlMathMLRowElementh">trunk/Source/WebCore/mathml/MathMLRowElement.h</a></li>
<li><a href="#trunkSourceWebCoremathmlMathMLScriptsElementcpp">trunk/Source/WebCore/mathml/MathMLScriptsElement.cpp</a></li>
<li><a href="#trunkSourceWebCoremathmlMathMLScriptsElementh">trunk/Source/WebCore/mathml/MathMLScriptsElement.h</a></li>
<li><a href="#trunkSourceWebCoremathmlmathtagsin">trunk/Source/WebCore/mathml/mathtags.in</a></li>
<li><a href="#trunkSourceWebCorerenderingmathmlRenderMathMLFractionh">trunk/Source/WebCore/rendering/mathml/RenderMathMLFraction.h</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<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>

<h3>Removed Paths</h3>
<ul>
<li><a href="#trunkSourceWebCoremathmlMathMLInlineContainerElementcpp">trunk/Source/WebCore/mathml/MathMLInlineContainerElement.cpp</a></li>
<li><a href="#trunkSourceWebCoremathmlMathMLInlineContainerElementh">trunk/Source/WebCore/mathml/MathMLInlineContainerElement.h</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebCoreCMakeListstxt"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/CMakeLists.txt (204808 => 204809)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/CMakeLists.txt        2016-08-23 11:35:57 UTC (rev 204808)
+++ trunk/Source/WebCore/CMakeLists.txt        2016-08-23 11:36:28 UTC (rev 204809)
</span><span class="lines">@@ -2005,12 +2005,12 @@
</span><span class="cx">     mathml/MathMLAnnotationElement.cpp
</span><span class="cx">     mathml/MathMLElement.cpp
</span><span class="cx">     mathml/MathMLFractionElement.cpp
</span><del>-    mathml/MathMLInlineContainerElement.cpp
</del><span class="cx">     mathml/MathMLMathElement.cpp
</span><span class="cx">     mathml/MathMLMencloseElement.cpp
</span><span class="cx">     mathml/MathMLOperatorDictionary.cpp
</span><span class="cx">     mathml/MathMLOperatorElement.cpp
</span><span class="cx">     mathml/MathMLPaddedElement.cpp
</span><ins>+    mathml/MathMLPresentationElement.cpp
</ins><span class="cx">     mathml/MathMLRowElement.cpp
</span><span class="cx">     mathml/MathMLScriptsElement.cpp
</span><span class="cx">     mathml/MathMLSelectElement.cpp
</span></span></pre></div>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (204808 => 204809)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2016-08-23 11:35:57 UTC (rev 204808)
+++ trunk/Source/WebCore/ChangeLog        2016-08-23 11:36:28 UTC (rev 204809)
</span><span class="lines">@@ -1,3 +1,34 @@
</span><ins>+2016-08-23  Frederic Wang  &lt;fwang@igalia.com&gt;
+
+        Rename MathMLInlineContainerElement to MathMLPresentationElement
+        https://bugs.webkit.org/show_bug.cgi?id=161053
+
+        Reviewed by Manuel Rego Casasnovas.
+
+        MathMLInlineContainerElement sounds a bad name for something that is now going to produce
+        RenderMathMLBlocks. MathML has two kinds of markup (presentation MathML and content MathML).
+        We only implement presentation MathML and most of the MathML elements are currently
+        implemented as MathMLInlineContainerElement. Hence we rename MathMLInlineContainerElement
+        to MathMLPresentationElement and will move more code from MathMLElement into that new class
+        in follow-up bugs. Also, other elements in the MathML namespace could be handled by a
+        separate MathMLUnknownElement class for consistency with SVG and HTML classes.
+
+        No new tests, behavior is unchanged.
+
+        * CMakeLists.txt: Rename MathMLInlineContainerElement to MathMLPresentationElement.
+        * WebCore.xcodeproj/project.pbxproj: Ditto.
+        * mathml/MathMLAllInOne.cpp: Ditto.
+        * mathml/MathMLFractionElement.cpp: Ditto.
+        * mathml/MathMLFractionElement.h: Ditto.
+        * mathml/MathMLPresentationElement.cpp: Ditto.
+        * mathml/MathMLPresentationElement.h: Ditto.
+        * mathml/MathMLRowElement.cpp: Ditto.
+        * mathml/MathMLRowElement.h: Ditto.
+        * mathml/MathMLScriptsElement.cpp: Ditto.
+        * mathml/MathMLScriptsElement.h: Ditto.
+        * mathml/mathtags.in: Ditto.
+        * rendering/mathml/RenderMathMLFraction.h: Remove useless include.
+
</ins><span class="cx"> 2016-08-23  Youenn Fablet  &lt;youenn@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Implement redirect support post CORS-preflight
</span></span></pre></div>
<a id="trunkSourceWebCoreWebCorexcodeprojprojectpbxproj"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj (204808 => 204809)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj        2016-08-23 11:35:57 UTC (rev 204808)
+++ trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj        2016-08-23 11:36:28 UTC (rev 204809)
</span><span class="lines">@@ -6323,8 +6323,8 @@
</span><span class="cx">                 FABE72F41059C1EB00D999DD /* MathMLElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FABE72ED1059C1EB00D999DD /* MathMLElement.cpp */; };
</span><span class="cx">                 FABE72F51059C1EB00D888CC /* MathMLAnnotationElement.h in Headers */ = {isa = PBXBuildFile; fileRef = FABE72EE1059C1EB00D888CC /* MathMLAnnotationElement.h */; };
</span><span class="cx">                 FABE72F51059C1EB00D999DD /* MathMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = FABE72EE1059C1EB00D999DD /* MathMLElement.h */; };
</span><del>-                FABE72F61059C1EB00D999DD /* MathMLInlineContainerElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FABE72EF1059C1EB00D999DD /* MathMLInlineContainerElement.cpp */; };
-                FABE72F71059C1EB00D999DD /* MathMLInlineContainerElement.h in Headers */ = {isa = PBXBuildFile; fileRef = FABE72F01059C1EB00D999DD /* MathMLInlineContainerElement.h */; };
</del><ins>+                FABE72F61059C1EB00D999DD /* MathMLPresentationElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FABE72EF1059C1EB00D999DD /* MathMLPresentationElement.cpp */; };
+                FABE72F71059C1EB00D999DD /* MathMLPresentationElement.h in Headers */ = {isa = PBXBuildFile; fileRef = FABE72F01059C1EB00D999DD /* MathMLPresentationElement.h */; };
</ins><span class="cx">                 FABE72F81059C1EB00D999DD /* MathMLMathElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FABE72F11059C1EB00D999DD /* MathMLMathElement.cpp */; };
</span><span class="cx">                 FABE72F91059C1EB00D999DD /* MathMLMathElement.h in Headers */ = {isa = PBXBuildFile; fileRef = FABE72F21059C1EB00D999DD /* MathMLMathElement.h */; };
</span><span class="cx">                 FABE72FD1059C21100D999DD /* MathMLElementFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FABE72FB1059C21100D999DD /* MathMLElementFactory.cpp */; };
</span><span class="lines">@@ -13898,8 +13898,8 @@
</span><span class="cx">                 FABE72ED1059C1EB00D999DD /* MathMLElement.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MathMLElement.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 FABE72EE1059C1EB00D888CC /* MathMLAnnotationElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MathMLAnnotationElement.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 FABE72EE1059C1EB00D999DD /* MathMLElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MathMLElement.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><del>-                FABE72EF1059C1EB00D999DD /* MathMLInlineContainerElement.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MathMLInlineContainerElement.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
-                FABE72F01059C1EB00D999DD /* MathMLInlineContainerElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MathMLInlineContainerElement.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</del><ins>+                FABE72EF1059C1EB00D999DD /* MathMLPresentationElement.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MathMLPresentationElement.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
+                FABE72F01059C1EB00D999DD /* MathMLPresentationElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MathMLPresentationElement.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</ins><span class="cx">                 FABE72F11059C1EB00D999DD /* MathMLMathElement.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MathMLMathElement.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 FABE72F21059C1EB00D999DD /* MathMLMathElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MathMLMathElement.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 FABE72F31059C1EB00D999DD /* mathtags.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mathtags.in; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="lines">@@ -23126,8 +23126,8 @@
</span><span class="cx">                                 FABE72EE1059C1EB00D999DD /* MathMLElement.h */,
</span><span class="cx">                                 0BCF83EF1059C1EB00D999DD /* MathMLFractionElement.cpp */,
</span><span class="cx">                                 0BCF83F01059C1EB00D999DD /* MathMLFractionElement.h */,
</span><del>-                                FABE72EF1059C1EB00D999DD /* MathMLInlineContainerElement.cpp */,
-                                FABE72F01059C1EB00D999DD /* MathMLInlineContainerElement.h */,
</del><ins>+                                FABE72EF1059C1EB00D999DD /* MathMLPresentationElement.cpp */,
+                                FABE72F01059C1EB00D999DD /* MathMLPresentationElement.h */,
</ins><span class="cx">                                 FABE72F11059C1EB00D999DD /* MathMLMathElement.cpp */,
</span><span class="cx">                                 FABE72F21059C1EB00D999DD /* MathMLMathElement.h */,
</span><span class="cx">                                 C3E61C653A64807A83E76FB8 /* MathMLMencloseElement.cpp */,
</span><span class="lines">@@ -25374,7 +25374,7 @@
</span><span class="cx">                                 FABE72F51059C1EB00D999DD /* MathMLElement.h in Headers */,
</span><span class="cx">                                 44A28AAC12DFB8AC00AE923B /* MathMLElementFactory.h in Headers */,
</span><span class="cx">                                 0BCF83F71059C1EB00D999DD /* MathMLFractionElement.h in Headers */,
</span><del>-                                FABE72F71059C1EB00D999DD /* MathMLInlineContainerElement.h in Headers */,
</del><ins>+                                FABE72F71059C1EB00D999DD /* MathMLPresentationElement.h in Headers */,
</ins><span class="cx">                                 FABE72F91059C1EB00D999DD /* MathMLMathElement.h in Headers */,
</span><span class="cx">                                 44A28AAF12DFB8BF00AE923B /* MathMLNames.h in Headers */,
</span><span class="cx">                                 FA654A6C1108ABED002616F1 /* MathMLOperatorElement.h in Headers */,
</span><span class="lines">@@ -29054,7 +29054,7 @@
</span><span class="cx">                                 FABE72F41059C1EB00D999DD /* MathMLElement.cpp in Sources */,
</span><span class="cx">                                 FABE72FD1059C21100D999DD /* MathMLElementFactory.cpp in Sources */,
</span><span class="cx">                                 0BCF83F61059C1EB00D999DD /* MathMLFractionElement.cpp in Sources */,
</span><del>-                                FABE72F61059C1EB00D999DD /* MathMLInlineContainerElement.cpp in Sources */,
</del><ins>+                                FABE72F61059C1EB00D999DD /* MathMLPresentationElement.cpp in Sources */,
</ins><span class="cx">                                 FABE72F81059C1EB00D999DD /* MathMLMathElement.cpp in Sources */,
</span><span class="cx">                                 05D913CEEAB2A60534218ACF /* MathMLMencloseElement.cpp in Sources */,
</span><span class="cx">                                 FABE72FE1059C21100D999DD /* MathMLNames.cpp in Sources */,
</span></span></pre></div>
<a id="trunkSourceWebCoremathmlMathMLAllInOnecpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/mathml/MathMLAllInOne.cpp (204808 => 204809)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/mathml/MathMLAllInOne.cpp        2016-08-23 11:35:57 UTC (rev 204808)
+++ trunk/Source/WebCore/mathml/MathMLAllInOne.cpp        2016-08-23 11:36:28 UTC (rev 204809)
</span><span class="lines">@@ -28,12 +28,12 @@
</span><span class="cx"> #include &quot;MathMLAnnotationElement.cpp&quot;
</span><span class="cx"> #include &quot;MathMLElement.cpp&quot;
</span><span class="cx"> #include &quot;MathMLFractionElement.cpp&quot;
</span><del>-#include &quot;MathMLInlineContainerElement.cpp&quot;
</del><span class="cx"> #include &quot;MathMLMathElement.cpp&quot;
</span><span class="cx"> #include &quot;MathMLMencloseElement.cpp&quot;
</span><span class="cx"> #include &quot;MathMLOperatorDictionary.cpp&quot;
</span><span class="cx"> #include &quot;MathMLOperatorElement.cpp&quot;
</span><span class="cx"> #include &quot;MathMLPaddedElement.cpp&quot;
</span><ins>+#include &quot;MathMLPresentationElement.cpp&quot;
</ins><span class="cx"> #include &quot;MathMLRowElement.cpp&quot;
</span><span class="cx"> #include &quot;MathMLScriptsElement.cpp&quot;
</span><span class="cx"> #include &quot;MathMLSelectElement.cpp&quot;
</span></span></pre></div>
<a id="trunkSourceWebCoremathmlMathMLFractionElementcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/mathml/MathMLFractionElement.cpp (204808 => 204809)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/mathml/MathMLFractionElement.cpp        2016-08-23 11:35:57 UTC (rev 204808)
+++ trunk/Source/WebCore/mathml/MathMLFractionElement.cpp        2016-08-23 11:36:28 UTC (rev 204809)
</span><span class="lines">@@ -36,7 +36,7 @@
</span><span class="cx"> using namespace MathMLNames;
</span><span class="cx"> 
</span><span class="cx"> inline MathMLFractionElement::MathMLFractionElement(const QualifiedName&amp; tagName, Document&amp; document)
</span><del>-    : MathMLInlineContainerElement(tagName, document)
</del><ins>+    : MathMLPresentationElement(tagName, document)
</ins><span class="cx"> {
</span><span class="cx"> }
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebCoremathmlMathMLFractionElementh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/mathml/MathMLFractionElement.h (204808 => 204809)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/mathml/MathMLFractionElement.h        2016-08-23 11:35:57 UTC (rev 204808)
+++ trunk/Source/WebCore/mathml/MathMLFractionElement.h        2016-08-23 11:36:28 UTC (rev 204809)
</span><span class="lines">@@ -26,11 +26,11 @@
</span><span class="cx"> #pragma once
</span><span class="cx"> 
</span><span class="cx"> #if ENABLE(MATHML)
</span><del>-#include &quot;MathMLInlineContainerElement.h&quot;
</del><ins>+#include &quot;MathMLPresentationElement.h&quot;
</ins><span class="cx"> 
</span><span class="cx"> namespace WebCore {
</span><span class="cx"> 
</span><del>-class MathMLFractionElement final : public MathMLInlineContainerElement {
</del><ins>+class MathMLFractionElement final : public MathMLPresentationElement {
</ins><span class="cx"> public:
</span><span class="cx">     static Ref&lt;MathMLFractionElement&gt; create(const QualifiedName&amp; tagName, Document&amp;);
</span><span class="cx">     const Length&amp; lineThickness();
</span></span></pre></div>
<a id="trunkSourceWebCoremathmlMathMLInlineContainerElementcpp"></a>
<div class="delfile"><h4>Deleted: trunk/Source/WebCore/mathml/MathMLInlineContainerElement.cpp (204808 => 204809)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/mathml/MathMLInlineContainerElement.cpp        2016-08-23 11:35:57 UTC (rev 204808)
+++ trunk/Source/WebCore/mathml/MathMLInlineContainerElement.cpp        2016-08-23 11:36:28 UTC (rev 204809)
</span><span class="lines">@@ -1,80 +0,0 @@
</span><del>-/*
- * Copyright (C) 2009 Alex Milowski (alex@milowski.com). All rights reserved.
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- * Copyright (C) 2016 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include &quot;config.h&quot;
-
-#if ENABLE(MATHML)
-
-#include &quot;MathMLInlineContainerElement.h&quot;
-
-#include &quot;MathMLNames.h&quot;
-#include &quot;RenderMathMLBlock.h&quot;
-
-namespace WebCore {
-
-using namespace MathMLNames;
-
-MathMLInlineContainerElement::MathMLInlineContainerElement(const QualifiedName&amp; tagName, Document&amp; document)
-    : MathMLElement(tagName, document)
-{
-}
-
-Ref&lt;MathMLInlineContainerElement&gt; MathMLInlineContainerElement::create(const QualifiedName&amp; tagName, Document&amp; document)
-{
-    return adoptRef(*new MathMLInlineContainerElement(tagName, document));
-}
-
-RenderPtr&lt;RenderElement&gt; MathMLInlineContainerElement::createElementRenderer(RenderStyle&amp;&amp; style, const RenderTreePosition&amp;)
-{
-    if (hasTagName(mtableTag))
-        return createRenderer&lt;RenderMathMLTable&gt;(*this, WTFMove(style));
-
-    return createRenderer&lt;RenderMathMLBlock&gt;(*this, WTFMove(style));
-}
-
-bool MathMLInlineContainerElement::acceptsDisplayStyleAttribute()
-{
-    return hasTagName(mtableTag);
-}
-
-void MathMLInlineContainerElement::parseAttribute(const QualifiedName&amp; name, const AtomicString&amp; value)
-{
-    bool displayStyleAttribute = name == displaystyleAttr &amp;&amp; acceptsDisplayStyleAttribute();
-    bool mathVariantAttribute = name == mathvariantAttr &amp;&amp; acceptsMathVariantAttribute();
-    if (displayStyleAttribute)
-        m_displayStyle = Nullopt;
-    if (mathVariantAttribute)
-        m_mathVariant = Nullopt;
-    if ((displayStyleAttribute || mathVariantAttribute) &amp;&amp; renderer())
-        MathMLStyle::resolveMathMLStyleTree(renderer());
-
-    MathMLElement::parseAttribute(name, value);
-}
-
-}
-
-#endif // ENABLE(MATHML)
</del></span></pre></div>
<a id="trunkSourceWebCoremathmlMathMLInlineContainerElementh"></a>
<div class="delfile"><h4>Deleted: trunk/Source/WebCore/mathml/MathMLInlineContainerElement.h (204808 => 204809)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/mathml/MathMLInlineContainerElement.h        2016-08-23 11:35:57 UTC (rev 204808)
+++ trunk/Source/WebCore/mathml/MathMLInlineContainerElement.h        2016-08-23 11:36:28 UTC (rev 204809)
</span><span class="lines">@@ -1,52 +0,0 @@
</span><del>-/*
- * Copyright (C) 2009 Alex Milowski (alex@milowski.com). All rights reserved.
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- * Copyright (C) 2016 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#pragma once
-
-#if ENABLE(MATHML)
-#include &quot;MathMLElement.h&quot;
-
-namespace WebCore {
-
-class MathMLInlineContainerElement : public MathMLElement {
-public:
-    static Ref&lt;MathMLInlineContainerElement&gt; create(const QualifiedName&amp; tagName, Document&amp;);
-
-protected:
-    MathMLInlineContainerElement(const QualifiedName&amp; tagName, Document&amp;);
-    void parseAttribute(const QualifiedName&amp;, const AtomicString&amp;) override;
-
-    bool acceptsDisplayStyleAttribute() override;
-
-private:
-    RenderPtr&lt;RenderElement&gt; createElementRenderer(RenderStyle&amp;&amp;, const RenderTreePosition&amp;) override;
-    bool isPresentationMathML() const final { return true; }
-};
-
-}
-
-#endif // ENABLE(MATHML)
</del></span></pre></div>
<a id="trunkSourceWebCoremathmlMathMLPresentationElementcppfromrev204795trunkSourceWebCoremathmlMathMLInlineContainerElementcpp"></a>
<div class="copfile"><h4>Copied: trunk/Source/WebCore/mathml/MathMLPresentationElement.cpp (from rev 204795, trunk/Source/WebCore/mathml/MathMLInlineContainerElement.cpp) (0 => 204809)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/mathml/MathMLPresentationElement.cpp                                (rev 0)
+++ trunk/Source/WebCore/mathml/MathMLPresentationElement.cpp        2016-08-23 11:36:28 UTC (rev 204809)
</span><span class="lines">@@ -0,0 +1,79 @@
</span><ins>+/*
+ * Copyright (C) 2009 Alex Milowski (alex@milowski.com). All rights reserved.
+ * Copyright (C) 2010 Apple Inc. All rights reserved.
+ * Copyright (C) 2016 Igalia S.L.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include &quot;config.h&quot;
+
+#if ENABLE(MATHML)
+#include &quot;MathMLPresentationElement.h&quot;
+
+#include &quot;MathMLNames.h&quot;
+#include &quot;RenderMathMLBlock.h&quot;
+
+namespace WebCore {
+
+using namespace MathMLNames;
+
+MathMLPresentationElement::MathMLPresentationElement(const QualifiedName&amp; tagName, Document&amp; document)
+    : MathMLElement(tagName, document)
+{
+}
+
+Ref&lt;MathMLPresentationElement&gt; MathMLPresentationElement::create(const QualifiedName&amp; tagName, Document&amp; document)
+{
+    return adoptRef(*new MathMLPresentationElement(tagName, document));
+}
+
+RenderPtr&lt;RenderElement&gt; MathMLPresentationElement::createElementRenderer(RenderStyle&amp;&amp; style, const RenderTreePosition&amp;)
+{
+    if (hasTagName(mtableTag))
+        return createRenderer&lt;RenderMathMLTable&gt;(*this, WTFMove(style));
+
+    return createRenderer&lt;RenderMathMLBlock&gt;(*this, WTFMove(style));
+}
+
+bool MathMLPresentationElement::acceptsDisplayStyleAttribute()
+{
+    return hasTagName(mtableTag);
+}
+
+void MathMLPresentationElement::parseAttribute(const QualifiedName&amp; name, const AtomicString&amp; value)
+{
+    bool displayStyleAttribute = name == displaystyleAttr &amp;&amp; acceptsDisplayStyleAttribute();
+    bool mathVariantAttribute = name == mathvariantAttr &amp;&amp; acceptsMathVariantAttribute();
+    if (displayStyleAttribute)
+        m_displayStyle = Nullopt;
+    if (mathVariantAttribute)
+        m_mathVariant = Nullopt;
+    if ((displayStyleAttribute || mathVariantAttribute) &amp;&amp; renderer())
+        MathMLStyle::resolveMathMLStyleTree(renderer());
+
+    MathMLElement::parseAttribute(name, value);
+}
+
+}
+
+#endif // ENABLE(MATHML)
</ins></span></pre></div>
<a id="trunkSourceWebCoremathmlMathMLPresentationElementcpp"></a>
<div class="propset"><h4>Property changes: trunk/Source/WebCore/mathml/MathMLPresentationElement.cpp</h4>
<pre class="diff"><span>
</span></pre></div>
<a id="svneolstyle"></a>
<div class="addfile"><h4>Added: svn:eol-style</h4></div>
<ins>+LF
</ins><span class="cx">\ No newline at end of property
</span><a id="trunkSourceWebCoremathmlMathMLPresentationElementhfromrev204795trunkSourceWebCoremathmlMathMLInlineContainerElementh"></a>
<div class="copfile"><h4>Copied: trunk/Source/WebCore/mathml/MathMLPresentationElement.h (from rev 204795, trunk/Source/WebCore/mathml/MathMLInlineContainerElement.h) (0 => 204809)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/mathml/MathMLPresentationElement.h                                (rev 0)
+++ trunk/Source/WebCore/mathml/MathMLPresentationElement.h        2016-08-23 11:36:28 UTC (rev 204809)
</span><span class="lines">@@ -0,0 +1,52 @@
</span><ins>+/*
+ * Copyright (C) 2009 Alex Milowski (alex@milowski.com). All rights reserved.
+ * Copyright (C) 2010 Apple Inc. All rights reserved.
+ * Copyright (C) 2016 Igalia S.L.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#pragma once
+
+#if ENABLE(MATHML)
+#include &quot;MathMLElement.h&quot;
+
+namespace WebCore {
+
+class MathMLPresentationElement : public MathMLElement {
+public:
+    static Ref&lt;MathMLPresentationElement&gt; create(const QualifiedName&amp; tagName, Document&amp;);
+
+protected:
+    MathMLPresentationElement(const QualifiedName&amp; tagName, Document&amp;);
+    void parseAttribute(const QualifiedName&amp;, const AtomicString&amp;) override;
+
+    bool acceptsDisplayStyleAttribute() override;
+
+private:
+    RenderPtr&lt;RenderElement&gt; createElementRenderer(RenderStyle&amp;&amp;, const RenderTreePosition&amp;) override;
+    bool isPresentationMathML() const final { return true; }
+};
+
+}
+
+#endif // ENABLE(MATHML)
</ins></span></pre></div>
<a id="trunkSourceWebCoremathmlMathMLPresentationElementh"></a>
<div class="propset"><h4>Property changes: trunk/Source/WebCore/mathml/MathMLPresentationElement.h</h4>
<pre class="diff"><span>
</span></pre></div>
<a id="svneolstyle"></a>
<div class="addfile"><h4>Added: svn:eol-style</h4></div>
<ins>+LF
</ins><span class="cx">\ No newline at end of property
</span><a id="trunkSourceWebCoremathmlMathMLRowElementcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/mathml/MathMLRowElement.cpp (204808 => 204809)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/mathml/MathMLRowElement.cpp        2016-08-23 11:35:57 UTC (rev 204808)
+++ trunk/Source/WebCore/mathml/MathMLRowElement.cpp        2016-08-23 11:36:28 UTC (rev 204809)
</span><span class="lines">@@ -40,7 +40,7 @@
</span><span class="cx"> using namespace MathMLNames;
</span><span class="cx"> 
</span><span class="cx"> MathMLRowElement::MathMLRowElement(const QualifiedName&amp; tagName, Document&amp; document)
</span><del>-    : MathMLInlineContainerElement(tagName, document)
</del><ins>+    : MathMLPresentationElement(tagName, document)
</ins><span class="cx"> {
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="lines">@@ -56,7 +56,7 @@
</span><span class="cx">             static_cast&lt;MathMLOperatorElement*&gt;(child)-&gt;setOperatorFormDirty();
</span><span class="cx">     }
</span><span class="cx"> 
</span><del>-    MathMLInlineContainerElement::childrenChanged(change);
</del><ins>+    MathMLPresentationElement::childrenChanged(change);
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> RenderPtr&lt;RenderElement&gt; MathMLRowElement::createElementRenderer(RenderStyle&amp;&amp; style, const RenderTreePosition&amp;)
</span></span></pre></div>
<a id="trunkSourceWebCoremathmlMathMLRowElementh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/mathml/MathMLRowElement.h (204808 => 204809)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/mathml/MathMLRowElement.h        2016-08-23 11:35:57 UTC (rev 204808)
+++ trunk/Source/WebCore/mathml/MathMLRowElement.h        2016-08-23 11:36:28 UTC (rev 204809)
</span><span class="lines">@@ -26,11 +26,11 @@
</span><span class="cx"> #pragma once
</span><span class="cx"> 
</span><span class="cx"> #if ENABLE(MATHML)
</span><del>-#include &quot;MathMLInlineContainerElement.h&quot;
</del><ins>+#include &quot;MathMLPresentationElement.h&quot;
</ins><span class="cx"> 
</span><span class="cx"> namespace WebCore {
</span><span class="cx"> 
</span><del>-class MathMLRowElement : public MathMLInlineContainerElement {
</del><ins>+class MathMLRowElement : public MathMLPresentationElement {
</ins><span class="cx"> public:
</span><span class="cx">     static Ref&lt;MathMLRowElement&gt; create(const QualifiedName&amp; tagName, Document&amp;);
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebCoremathmlMathMLScriptsElementcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/mathml/MathMLScriptsElement.cpp (204808 => 204809)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/mathml/MathMLScriptsElement.cpp        2016-08-23 11:35:57 UTC (rev 204808)
+++ trunk/Source/WebCore/mathml/MathMLScriptsElement.cpp        2016-08-23 11:36:28 UTC (rev 204809)
</span><span class="lines">@@ -36,7 +36,7 @@
</span><span class="cx"> using namespace MathMLNames;
</span><span class="cx"> 
</span><span class="cx"> MathMLScriptsElement::MathMLScriptsElement(const QualifiedName&amp; tagName, Document&amp; document)
</span><del>-    : MathMLInlineContainerElement(tagName, document)
</del><ins>+    : MathMLPresentationElement(tagName, document)
</ins><span class="cx"> {
</span><span class="cx"> }
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebCoremathmlMathMLScriptsElementh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/mathml/MathMLScriptsElement.h (204808 => 204809)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/mathml/MathMLScriptsElement.h        2016-08-23 11:35:57 UTC (rev 204808)
+++ trunk/Source/WebCore/mathml/MathMLScriptsElement.h        2016-08-23 11:36:28 UTC (rev 204809)
</span><span class="lines">@@ -26,11 +26,11 @@
</span><span class="cx"> #pragma once
</span><span class="cx"> 
</span><span class="cx"> #if ENABLE(MATHML)
</span><del>-#include &quot;MathMLInlineContainerElement.h&quot;
</del><ins>+#include &quot;MathMLPresentationElement.h&quot;
</ins><span class="cx"> 
</span><span class="cx"> namespace WebCore {
</span><span class="cx"> 
</span><del>-class MathMLScriptsElement : public MathMLInlineContainerElement {
</del><ins>+class MathMLScriptsElement : public MathMLPresentationElement {
</ins><span class="cx"> public:
</span><span class="cx">     static Ref&lt;MathMLScriptsElement&gt; create(const QualifiedName&amp; tagName, Document&amp;);
</span><span class="cx">     const Length&amp; subscriptShift();
</span></span></pre></div>
<a id="trunkSourceWebCoremathmlmathtagsin"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/mathml/mathtags.in (204808 => 204809)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/mathml/mathtags.in        2016-08-23 11:35:57 UTC (rev 204808)
+++ trunk/Source/WebCore/mathml/mathtags.in        2016-08-23 11:36:28 UTC (rev 204809)
</span><span class="lines">@@ -28,13 +28,13 @@
</span><span class="cx"> mspace interfaceName=MathMLSpaceElement
</span><span class="cx"> msub interfaceName=MathMLScriptsElement
</span><span class="cx"> msup interfaceName=MathMLScriptsElement
</span><del>-mtable interfaceName=MathMLInlineContainerElement
</del><ins>+mtable interfaceName=MathMLPresentationElement
</ins><span class="cx"> mtr interfaceName=MathMLElement
</span><span class="cx"> mtd interfaceName=MathMLElement
</span><span class="cx"> mmultiscripts interfaceName=MathMLScriptsElement
</span><del>-mprescripts interfaceName=MathMLInlineContainerElement
</del><ins>+mprescripts interfaceName=MathMLPresentationElement
</ins><span class="cx"> menclose interfaceName=MathMLMencloseElement
</span><del>-none interfaceName=MathMLInlineContainerElement
</del><ins>+none interfaceName=MathMLPresentationElement
</ins><span class="cx"> semantics interfaceName=MathMLSelectElement
</span><span class="cx"> 
</span><span class="cx"> maligngroup interfaceName=MathMLElement
</span></span></pre></div>
<a id="trunkSourceWebCorerenderingmathmlRenderMathMLFractionh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/rendering/mathml/RenderMathMLFraction.h (204808 => 204809)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/rendering/mathml/RenderMathMLFraction.h        2016-08-23 11:35:57 UTC (rev 204808)
+++ trunk/Source/WebCore/rendering/mathml/RenderMathMLFraction.h        2016-08-23 11:36:28 UTC (rev 204809)
</span><span class="lines">@@ -30,7 +30,6 @@
</span><span class="cx"> #if ENABLE(MATHML)
</span><span class="cx"> 
</span><span class="cx"> #include &quot;MathMLFractionElement.h&quot;
</span><del>-#include &quot;MathMLInlineContainerElement.h&quot;
</del><span class="cx"> #include &quot;RenderMathMLBlock.h&quot;
</span><span class="cx"> 
</span><span class="cx"> namespace WebCore {
</span></span></pre>
</div>
</div>

</body>
</html>