Title: [109154] trunk/Source/WebCore
Revision
109154
Author
[email protected]
Date
2012-02-28 14:58:17 -0800 (Tue, 28 Feb 2012)

Log Message

Fix build.

Modified Paths


Diff

Modified: trunk/Source/WebCore/ChangeLog (109153 => 109154)


--- trunk/Source/WebCore/ChangeLog	2012-02-28 22:55:08 UTC (rev 109153)
+++ trunk/Source/WebCore/ChangeLog	2012-02-28 22:58:17 UTC (rev 109154)
@@ -1,3 +1,10 @@
+2012-02-28  Oliver Hunt  <[email protected]>
+
+        Fix build.
+
+        * mathml/MathMLElement.cpp:
+        (WebCore::MathMLElement::collectStyleForAttribute):
+
 2012-02-28  Dean Jackson  <[email protected]>
 
         https://bugs.webkit.org/show_bug.cgi?id=79824

Modified: trunk/Source/WebCore/mathml/MathMLElement.cpp (109153 => 109154)


--- trunk/Source/WebCore/mathml/MathMLElement.cpp	2012-02-28 22:55:08 UTC (rev 109153)
+++ trunk/Source/WebCore/mathml/MathMLElement.cpp	2012-02-28 22:58:17 UTC (rev 109154)
@@ -79,7 +79,7 @@
     else if (attr->name() == fontfamilyAttr)
         addPropertyToAttributeStyle(style, CSSPropertyFontFamily, attr->value());
     else {
-        ASSERT(!isPresentationAttribute(attr));
+        ASSERT(!isPresentationAttribute(attr->name()));
         StyledElement::collectStyleForAttribute(attr, style);
     }
 }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to