Diff
Modified: trunk/Source/WebCore/ChangeLog (204884 => 204885)
--- trunk/Source/WebCore/ChangeLog 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/ChangeLog 2016-08-24 05:56:08 UTC (rev 204885)
@@ -1,3 +1,58 @@
+2016-08-23 Frederic Wang <[email protected]>
+
+ More consistent header inclusions in the MathML module
+ https://bugs.webkit.org/show_bug.cgi?id=161080
+
+ Reviewed by Darin Adler.
+
+ We adjust header inclusion in the MathML module so that:
+ - implementation file's own header is outside the #if ENABLE(MATHML)
+ - There is always a blank line after the #if ENABLE(MATHML)
+
+ No new tests, behavior is unchanged.
+
+ * mathml/MathMLAnnotationElement.cpp:
+ * mathml/MathMLAnnotationElement.h:
+ * mathml/MathMLElement.cpp:
+ * mathml/MathMLFractionElement.cpp:
+ * mathml/MathMLFractionElement.h:
+ * mathml/MathMLMathElement.cpp:
+ * mathml/MathMLMathElement.h:
+ * mathml/MathMLMencloseElement.cpp:
+ * mathml/MathMLMencloseElement.h:
+ * mathml/MathMLOperatorDictionary.cpp:
+ * mathml/MathMLOperatorElement.cpp:
+ * mathml/MathMLOperatorElement.h:
+ * mathml/MathMLPaddedElement.cpp:
+ * mathml/MathMLPaddedElement.h:
+ * mathml/MathMLPresentationElement.cpp:
+ * mathml/MathMLPresentationElement.h:
+ * mathml/MathMLRowElement.cpp:
+ * mathml/MathMLRowElement.h:
+ * mathml/MathMLScriptsElement.cpp:
+ * mathml/MathMLScriptsElement.h:
+ * mathml/MathMLSelectElement.h:
+ * mathml/MathMLSpaceElement.cpp:
+ * mathml/MathMLSpaceElement.h:
+ * mathml/MathMLTokenElement.cpp:
+ * mathml/MathMLUnderOverElement.cpp:
+ * mathml/MathMLUnderOverElement.h:
+ * rendering/mathml/MathMLStyle.cpp:
+ * rendering/mathml/MathOperator.cpp:
+ * rendering/mathml/MathOperator.h:
+ * rendering/mathml/RenderMathMLBlock.cpp:
+ * rendering/mathml/RenderMathMLFenced.cpp:
+ * rendering/mathml/RenderMathMLFencedOperator.cpp:
+ * rendering/mathml/RenderMathMLFraction.cpp:
+ * rendering/mathml/RenderMathMLMath.cpp:
+ * rendering/mathml/RenderMathMLMenclose.cpp:
+ * rendering/mathml/RenderMathMLMenclose.h:
+ * rendering/mathml/RenderMathMLOperator.cpp:
+ * rendering/mathml/RenderMathMLRoot.cpp:
+ * rendering/mathml/RenderMathMLRow.cpp:
+ * rendering/mathml/RenderMathMLScripts.cpp:
+ * rendering/mathml/RenderMathMLUnderOver.cpp:
+
2016-08-23 Zalan Bujtas <[email protected]>
ASSERTION FAILED: !view().layoutStateEnabled() || style().styleType() == FIRST_LETTER in WebCore::RenderInline::clippedOverflowRectForRepaint
Modified: trunk/Source/WebCore/mathml/MathMLAnnotationElement.cpp (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLAnnotationElement.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLAnnotationElement.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -25,9 +25,9 @@
*/
#include "config.h"
+#include "MathMLAnnotationElement.h"
#if ENABLE(MATHML)
-#include "MathMLAnnotationElement.h"
#include "HTMLHtmlElement.h"
#include "MathMLMathElement.h"
Modified: trunk/Source/WebCore/mathml/MathMLAnnotationElement.h (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLAnnotationElement.h 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLAnnotationElement.h 2016-08-24 05:56:08 UTC (rev 204885)
@@ -26,6 +26,7 @@
#pragma once
#if ENABLE(MATHML)
+
#include "MathMLRowElement.h"
namespace WebCore {
Modified: trunk/Source/WebCore/mathml/MathMLElement.cpp (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLElement.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLElement.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -27,11 +27,10 @@
*/
#include "config.h"
+#include "MathMLElement.h"
#if ENABLE(MATHML)
-#include "MathMLElement.h"
-
#include "ElementIterator.h"
#include "Event.h"
#include "EventHandler.h"
Modified: trunk/Source/WebCore/mathml/MathMLFractionElement.cpp (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLFractionElement.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLFractionElement.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -25,9 +25,9 @@
*/
#include "config.h"
+#include "MathMLFractionElement.h"
#if ENABLE(MATHML)
-#include "MathMLFractionElement.h"
#include "RenderMathMLFraction.h"
Modified: trunk/Source/WebCore/mathml/MathMLFractionElement.h (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLFractionElement.h 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLFractionElement.h 2016-08-24 05:56:08 UTC (rev 204885)
@@ -26,6 +26,7 @@
#pragma once
#if ENABLE(MATHML)
+
#include "MathMLPresentationElement.h"
namespace WebCore {
Modified: trunk/Source/WebCore/mathml/MathMLMathElement.cpp (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLMathElement.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLMathElement.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -26,11 +26,10 @@
*/
#include "config.h"
+#include "MathMLMathElement.h"
#if ENABLE(MATHML)
-#include "MathMLMathElement.h"
-
#include "MathMLNames.h"
#include "RenderMathMLMath.h"
Modified: trunk/Source/WebCore/mathml/MathMLMathElement.h (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLMathElement.h 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLMathElement.h 2016-08-24 05:56:08 UTC (rev 204885)
@@ -28,6 +28,7 @@
#pragma once
#if ENABLE(MATHML)
+
#include "MathMLRowElement.h"
namespace WebCore {
Modified: trunk/Source/WebCore/mathml/MathMLMencloseElement.cpp (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLMencloseElement.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLMencloseElement.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -25,9 +25,9 @@
*/
#include "config.h"
+#include "MathMLMencloseElement.h"
#if ENABLE(MATHML)
-#include "MathMLMencloseElement.h"
#include "MathMLNames.h"
#include "RenderMathMLMenclose.h"
Modified: trunk/Source/WebCore/mathml/MathMLMencloseElement.h (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLMencloseElement.h 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLMencloseElement.h 2016-08-24 05:56:08 UTC (rev 204885)
@@ -27,6 +27,7 @@
#pragma once
#if ENABLE(MATHML)
+
#include "Element.h"
#include "MathMLRowElement.h"
Modified: trunk/Source/WebCore/mathml/MathMLOperatorDictionary.cpp (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLOperatorDictionary.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLOperatorDictionary.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -24,9 +24,9 @@
*/
#include "config.h"
+#include "MathMLOperatorDictionary.h"
#if ENABLE(MATHML)
-#include "MathMLOperatorDictionary.h"
namespace WebCore {
Modified: trunk/Source/WebCore/mathml/MathMLOperatorElement.cpp (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLOperatorElement.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLOperatorElement.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -25,9 +25,9 @@
*/
#include "config.h"
+#include "MathMLOperatorElement.h"
#if ENABLE(MATHML)
-#include "MathMLOperatorElement.h"
#include "RenderMathMLOperator.h"
#include <wtf/unicode/CharacterNames.h>
Modified: trunk/Source/WebCore/mathml/MathMLOperatorElement.h (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLOperatorElement.h 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLOperatorElement.h 2016-08-24 05:56:08 UTC (rev 204885)
@@ -26,6 +26,7 @@
#pragma once
#if ENABLE(MATHML)
+
#include "MathMLOperatorDictionary.h"
#include "MathMLTokenElement.h"
Modified: trunk/Source/WebCore/mathml/MathMLPaddedElement.cpp (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLPaddedElement.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLPaddedElement.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -25,9 +25,9 @@
*/
#include "config.h"
+#include "MathMLPaddedElement.h"
#if ENABLE(MATHML)
-#include "MathMLPaddedElement.h"
#include "RenderMathMLPadded.h"
Modified: trunk/Source/WebCore/mathml/MathMLPaddedElement.h (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLPaddedElement.h 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLPaddedElement.h 2016-08-24 05:56:08 UTC (rev 204885)
@@ -26,6 +26,7 @@
#pragma once
#if ENABLE(MATHML)
+
#include "MathMLRowElement.h"
namespace WebCore {
Modified: trunk/Source/WebCore/mathml/MathMLPresentationElement.cpp (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLPresentationElement.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLPresentationElement.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -26,9 +26,9 @@
*/
#include "config.h"
+#include "MathMLPresentationElement.h"
#if ENABLE(MATHML)
-#include "MathMLPresentationElement.h"
#include "MathMLNames.h"
#include "RenderMathMLBlock.h"
Modified: trunk/Source/WebCore/mathml/MathMLPresentationElement.h (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLPresentationElement.h 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLPresentationElement.h 2016-08-24 05:56:08 UTC (rev 204885)
@@ -28,6 +28,7 @@
#pragma once
#if ENABLE(MATHML)
+
#include "MathMLElement.h"
namespace WebCore {
Modified: trunk/Source/WebCore/mathml/MathMLRowElement.cpp (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLRowElement.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLRowElement.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -24,9 +24,9 @@
*/
#include "config.h"
+#include "MathMLRowElement.h"
#if ENABLE(MATHML)
-#include "MathMLRowElement.h"
#include "MathMLNames.h"
#include "MathMLOperatorElement.h"
Modified: trunk/Source/WebCore/mathml/MathMLRowElement.h (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLRowElement.h 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLRowElement.h 2016-08-24 05:56:08 UTC (rev 204885)
@@ -26,6 +26,7 @@
#pragma once
#if ENABLE(MATHML)
+
#include "MathMLPresentationElement.h"
namespace WebCore {
Modified: trunk/Source/WebCore/mathml/MathMLScriptsElement.cpp (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLScriptsElement.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLScriptsElement.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -25,9 +25,9 @@
*/
#include "config.h"
+#include "MathMLScriptsElement.h"
#if ENABLE(MATHML)
-#include "MathMLScriptsElement.h"
#include "RenderMathMLScripts.h"
Modified: trunk/Source/WebCore/mathml/MathMLScriptsElement.h (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLScriptsElement.h 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLScriptsElement.h 2016-08-24 05:56:08 UTC (rev 204885)
@@ -26,6 +26,7 @@
#pragma once
#if ENABLE(MATHML)
+
#include "MathMLPresentationElement.h"
namespace WebCore {
Modified: trunk/Source/WebCore/mathml/MathMLSelectElement.h (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLSelectElement.h 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLSelectElement.h 2016-08-24 05:56:08 UTC (rev 204885)
@@ -26,6 +26,7 @@
#pragma once
#if ENABLE(MATHML)
+
#include "MathMLRowElement.h"
namespace WebCore {
Modified: trunk/Source/WebCore/mathml/MathMLSpaceElement.cpp (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLSpaceElement.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLSpaceElement.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -25,9 +25,9 @@
*/
#include "config.h"
+#include "MathMLSpaceElement.h"
#if ENABLE(MATHML)
-#include "MathMLSpaceElement.h"
#include "RenderMathMLSpace.h"
Modified: trunk/Source/WebCore/mathml/MathMLSpaceElement.h (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLSpaceElement.h 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLSpaceElement.h 2016-08-24 05:56:08 UTC (rev 204885)
@@ -26,6 +26,7 @@
#pragma once
#if ENABLE(MATHML)
+
#include "MathMLElement.h"
namespace WebCore {
Modified: trunk/Source/WebCore/mathml/MathMLTokenElement.cpp (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLTokenElement.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLTokenElement.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -26,9 +26,9 @@
*/
#include "config.h"
+#include "MathMLTokenElement.h"
#if ENABLE(MATHML)
-#include "MathMLTokenElement.h"
#include "MathMLNames.h"
#include "RenderMathMLToken.h"
Modified: trunk/Source/WebCore/mathml/MathMLUnderOverElement.cpp (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLUnderOverElement.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLUnderOverElement.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -25,9 +25,9 @@
*/
#include "config.h"
+#include "MathMLUnderOverElement.h"
#if ENABLE(MATHML)
-#include "MathMLUnderOverElement.h"
#include "RenderMathMLUnderOver.h"
Modified: trunk/Source/WebCore/mathml/MathMLUnderOverElement.h (204884 => 204885)
--- trunk/Source/WebCore/mathml/MathMLUnderOverElement.h 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/mathml/MathMLUnderOverElement.h 2016-08-24 05:56:08 UTC (rev 204885)
@@ -26,6 +26,7 @@
#pragma once
#if ENABLE(MATHML)
+
#include "MathMLScriptsElement.h"
namespace WebCore {
Modified: trunk/Source/WebCore/rendering/mathml/MathMLStyle.cpp (204884 => 204885)
--- trunk/Source/WebCore/rendering/mathml/MathMLStyle.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/rendering/mathml/MathMLStyle.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -24,9 +24,9 @@
*/
#include "config.h"
+#include "MathMLStyle.h"
#if ENABLE(MATHML)
-#include "MathMLStyle.h"
#include "MathMLElement.h"
#include "MathMLNames.h"
Modified: trunk/Source/WebCore/rendering/mathml/MathOperator.cpp (204884 => 204885)
--- trunk/Source/WebCore/rendering/mathml/MathOperator.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/rendering/mathml/MathOperator.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -24,9 +24,9 @@
*/
#include "config.h"
+#include "MathOperator.h"
#if ENABLE(MATHML)
-#include "MathOperator.h"
#include "RenderStyle.h"
#include "StyleInheritedData.h"
Modified: trunk/Source/WebCore/rendering/mathml/MathOperator.h (204884 => 204885)
--- trunk/Source/WebCore/rendering/mathml/MathOperator.h 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/rendering/mathml/MathOperator.h 2016-08-24 05:56:08 UTC (rev 204885)
@@ -26,6 +26,7 @@
#pragma once
#if ENABLE(MATHML)
+
#include "GlyphPage.h"
#include "LayoutUnit.h"
#include "OpenTypeMathData.h"
Modified: trunk/Source/WebCore/rendering/mathml/RenderMathMLBlock.cpp (204884 => 204885)
--- trunk/Source/WebCore/rendering/mathml/RenderMathMLBlock.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/rendering/mathml/RenderMathMLBlock.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -25,11 +25,10 @@
*/
#include "config.h"
+#include "RenderMathMLBlock.h"
#if ENABLE(MATHML)
-#include "RenderMathMLBlock.h"
-
#include "CSSHelper.h"
#include "GraphicsContext.h"
#include "LayoutRepainter.h"
Modified: trunk/Source/WebCore/rendering/mathml/RenderMathMLFenced.cpp (204884 => 204885)
--- trunk/Source/WebCore/rendering/mathml/RenderMathMLFenced.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/rendering/mathml/RenderMathMLFenced.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -24,11 +24,10 @@
*/
#include "config.h"
+#include "RenderMathMLFenced.h"
#if ENABLE(MATHML)
-#include "RenderMathMLFenced.h"
-
#include "FontSelector.h"
#include "MathMLNames.h"
#include "MathMLRowElement.h"
Modified: trunk/Source/WebCore/rendering/mathml/RenderMathMLFencedOperator.cpp (204884 => 204885)
--- trunk/Source/WebCore/rendering/mathml/RenderMathMLFencedOperator.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/rendering/mathml/RenderMathMLFencedOperator.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -24,11 +24,10 @@
*/
#include "config.h"
+#include "RenderMathMLFencedOperator.h"
#if ENABLE(MATHML)
-#include "RenderMathMLFencedOperator.h"
-
#include "MathMLOperatorDictionary.h"
#include "MathMLOperatorElement.h"
Modified: trunk/Source/WebCore/rendering/mathml/RenderMathMLFraction.cpp (204884 => 204885)
--- trunk/Source/WebCore/rendering/mathml/RenderMathMLFraction.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/rendering/mathml/RenderMathMLFraction.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -26,9 +26,9 @@
*/
#include "config.h"
+#include "RenderMathMLFraction.h"
#if ENABLE(MATHML)
-#include "RenderMathMLFraction.h"
#include "GraphicsContext.h"
#include "MathMLFractionElement.h"
Modified: trunk/Source/WebCore/rendering/mathml/RenderMathMLMath.cpp (204884 => 204885)
--- trunk/Source/WebCore/rendering/mathml/RenderMathMLMath.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/rendering/mathml/RenderMathMLMath.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -24,11 +24,10 @@
*/
#include "config.h"
+#include "RenderMathMLMath.h"
#if ENABLE(MATHML)
-#include "RenderMathMLMath.h"
-
#include "MathMLNames.h"
#include "MathMLRowElement.h"
Modified: trunk/Source/WebCore/rendering/mathml/RenderMathMLMenclose.cpp (204884 => 204885)
--- trunk/Source/WebCore/rendering/mathml/RenderMathMLMenclose.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/rendering/mathml/RenderMathMLMenclose.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -25,9 +25,9 @@
*/
#include "config.h"
+#include "RenderMathMLMenclose.h"
#if ENABLE(MATHML)
-#include "RenderMathMLMenclose.h"
#include "GraphicsContext.h"
#include "MathMLNames.h"
Modified: trunk/Source/WebCore/rendering/mathml/RenderMathMLMenclose.h (204884 => 204885)
--- trunk/Source/WebCore/rendering/mathml/RenderMathMLMenclose.h 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/rendering/mathml/RenderMathMLMenclose.h 2016-08-24 05:56:08 UTC (rev 204885)
@@ -27,6 +27,7 @@
#pragma once
#if ENABLE(MATHML)
+
#include "MathMLMencloseElement.h"
#include "RenderMathMLRow.h"
Modified: trunk/Source/WebCore/rendering/mathml/RenderMathMLOperator.cpp (204884 => 204885)
--- trunk/Source/WebCore/rendering/mathml/RenderMathMLOperator.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/rendering/mathml/RenderMathMLOperator.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -26,11 +26,10 @@
*/
#include "config.h"
+#include "RenderMathMLOperator.h"
#if ENABLE(MATHML)
-#include "RenderMathMLOperator.h"
-
#include "FontSelector.h"
#include "MathMLNames.h"
#include "MathMLOperatorElement.h"
Modified: trunk/Source/WebCore/rendering/mathml/RenderMathMLRoot.cpp (204884 => 204885)
--- trunk/Source/WebCore/rendering/mathml/RenderMathMLRoot.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/rendering/mathml/RenderMathMLRoot.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -26,11 +26,10 @@
*/
#include "config.h"
+#include "RenderMathMLRoot.h"
#if ENABLE(MATHML)
-#include "RenderMathMLRoot.h"
-
#include "FontCache.h"
#include "GraphicsContext.h"
#include "MathMLNames.h"
Modified: trunk/Source/WebCore/rendering/mathml/RenderMathMLRow.cpp (204884 => 204885)
--- trunk/Source/WebCore/rendering/mathml/RenderMathMLRow.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/rendering/mathml/RenderMathMLRow.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -25,11 +25,10 @@
*/
#include "config.h"
+#include "RenderMathMLRow.h"
#if ENABLE(MATHML)
-#include "RenderMathMLRow.h"
-
#include "MathMLNames.h"
#include "MathMLRowElement.h"
#include "RenderIterator.h"
Modified: trunk/Source/WebCore/rendering/mathml/RenderMathMLScripts.cpp (204884 => 204885)
--- trunk/Source/WebCore/rendering/mathml/RenderMathMLScripts.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/rendering/mathml/RenderMathMLScripts.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -26,11 +26,10 @@
*/
#include "config.h"
+#include "RenderMathMLScripts.h"
#if ENABLE(MATHML)
-#include "RenderMathMLScripts.h"
-
#include "MathMLElement.h"
#include "MathMLScriptsElement.h"
#include "RenderMathMLOperator.h"
Modified: trunk/Source/WebCore/rendering/mathml/RenderMathMLUnderOver.cpp (204884 => 204885)
--- trunk/Source/WebCore/rendering/mathml/RenderMathMLUnderOver.cpp 2016-08-24 04:57:26 UTC (rev 204884)
+++ trunk/Source/WebCore/rendering/mathml/RenderMathMLUnderOver.cpp 2016-08-24 05:56:08 UTC (rev 204885)
@@ -25,11 +25,10 @@
*/
#include "config.h"
+#include "RenderMathMLUnderOver.h"
#if ENABLE(MATHML)
-#include "RenderMathMLUnderOver.h"
-
#include "MathMLElement.h"
#include "MathMLOperatorDictionary.h"
#include "MathMLUnderOverElement.h"