Changeset 161432 in webkit


Ignore:
Timestamp:
Jan 7, 2014 10:04:44 AM (10 years ago)
Author:
ap@apple.com
Message:

Debug biuld fix.

Replace actionTag with mactionTag in assertions.

  • mathml/MathMLSelectElement.cpp:

(WebCore::MathMLSelectElement::getSelectedActionChildAndIndex):
(WebCore::MathMLSelectElement::getSelectedActionChild):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r161430 r161432  
     12014-01-07  Alexey Proskuryakov  <ap@apple.com>
     2
     3        Debug biuld fix.
     4
     5        Replace actionTag with mactionTag in assertions.
     6
     7        * mathml/MathMLSelectElement.cpp:
     8        (WebCore::MathMLSelectElement::getSelectedActionChildAndIndex):
     9        (WebCore::MathMLSelectElement::getSelectedActionChild):
     10
    1112014-01-07  Frédéric Wang  <fred.wang@free.fr>
    212
    313        Add Support for the semantics element.
    414        https://bugs.webkit.org/show_bug.cgi?id=100626
    5 
    615
    716        Reviewed by Chris Fleizach.
  • trunk/Source/WebCore/mathml/MathMLSelectElement.cpp

    r161430 r161432  
    8080int MathMLSelectElement::getSelectedActionChildAndIndex(Element*& selectedChild)
    8181{
    82     ASSERT(hasLocalName(actionTag));
     82    ASSERT(hasLocalName(mactionTag));
    8383
    8484    // We "round up or down to the closest allowable value" of the selection attribute, as suggested by the MathML specification.
     
    101101Element* MathMLSelectElement::getSelectedActionChild()
    102102{
    103     ASSERT(hasLocalName(actionTag));
     103    ASSERT(hasLocalName(mactionTag));
    104104
    105105    Element* child = firstElementChild();
Note: See TracChangeset for help on using the changeset viewer.