Title: [161432] trunk/Source/WebCore
Revision
161432
Author
[email protected]
Date
2014-01-07 10:04:44 -0800 (Tue, 07 Jan 2014)

Log Message

Debug biuld fix.

Replace actionTag with mactionTag in assertions.

* mathml/MathMLSelectElement.cpp:
(WebCore::MathMLSelectElement::getSelectedActionChildAndIndex):
(WebCore::MathMLSelectElement::getSelectedActionChild):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (161431 => 161432)


--- trunk/Source/WebCore/ChangeLog	2014-01-07 17:57:17 UTC (rev 161431)
+++ trunk/Source/WebCore/ChangeLog	2014-01-07 18:04:44 UTC (rev 161432)
@@ -1,3 +1,13 @@
+2014-01-07  Alexey Proskuryakov  <[email protected]>
+
+        Debug biuld fix.
+
+        Replace actionTag with mactionTag in assertions.
+
+        * mathml/MathMLSelectElement.cpp:
+        (WebCore::MathMLSelectElement::getSelectedActionChildAndIndex):
+        (WebCore::MathMLSelectElement::getSelectedActionChild):
+
 2014-01-07  Frédéric Wang  <[email protected]>
 
         Add Support for the semantics element.
@@ -3,5 +13,4 @@
         https://bugs.webkit.org/show_bug.cgi?id=100626
 
-
         Reviewed by Chris Fleizach.
 

Modified: trunk/Source/WebCore/mathml/MathMLSelectElement.cpp (161431 => 161432)


--- trunk/Source/WebCore/mathml/MathMLSelectElement.cpp	2014-01-07 17:57:17 UTC (rev 161431)
+++ trunk/Source/WebCore/mathml/MathMLSelectElement.cpp	2014-01-07 18:04:44 UTC (rev 161432)
@@ -79,7 +79,7 @@
 
 int MathMLSelectElement::getSelectedActionChildAndIndex(Element*& selectedChild)
 {
-    ASSERT(hasLocalName(actionTag));
+    ASSERT(hasLocalName(mactionTag));
 
     // We "round up or down to the closest allowable value" of the selection attribute, as suggested by the MathML specification.
     selectedChild = firstElementChild();
@@ -100,7 +100,7 @@
 
 Element* MathMLSelectElement::getSelectedActionChild()
 {
-    ASSERT(hasLocalName(actionTag));
+    ASSERT(hasLocalName(mactionTag));
 
     Element* child = firstElementChild();
     if (!child)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to