Title: [129708] trunk/Source/WebCore/rendering/RenderTableCell.cpp
Revision
129708
Author
[email protected]
Date
2012-09-26 14:36:21 -0700 (Wed, 26 Sep 2012)

Log Message

Compile fix for Windows.

Modified Paths


Diff

Modified: trunk/Source/WebCore/rendering/RenderTableCell.cpp (129707 => 129708)


--- trunk/Source/WebCore/rendering/RenderTableCell.cpp	2012-09-26 21:13:38 UTC (rev 129707)
+++ trunk/Source/WebCore/rendering/RenderTableCell.cpp	2012-09-26 21:36:21 UTC (rev 129708)
@@ -100,17 +100,17 @@
 
 void RenderTableCell::colSpanOrRowSpanChanged()
 {
-    ASSERT(m_hasHTMLTableCellElement
 #if ENABLE(MATHML)
-        || isMathMLElement(node())
+    ASSERT(m_hasHTMLTableCellElement || isMathMLElement(node()));
+#else
+    ASSERT(m_hasHTMLTableCellElement);
 #endif
-        );
     ASSERT(node());
-    ASSERT(node()->hasTagName(tdTag) || node()->hasTagName(thTag)
 #if ENABLE(MATHML)
-        || node()->hasTagName(MathMLNames::mtdTag)
+    ASSERT(node()->hasTagName(tdTag) || node()->hasTagName(thTag) || node()->hasTagName(MathMLNames::mtdTag));
+#else
+    ASSERT(node()->hasTagName(tdTag) || node()->hasTagName(thTag));
 #endif
-        );
 
     setNeedsLayoutAndPrefWidthsRecalc();
     if (parent() && section())
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to