Changeset 161432 in webkit
- Timestamp:
- Jan 7, 2014, 10:04:44 AM (11 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r161430 r161432 1 2014-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 1 11 2014-01-07 Frédéric Wang <fred.wang@free.fr> 2 12 3 13 Add Support for the semantics element. 4 14 https://bugs.webkit.org/show_bug.cgi?id=100626 5 6 15 7 16 Reviewed by Chris Fleizach. -
trunk/Source/WebCore/mathml/MathMLSelectElement.cpp
r161430 r161432 80 80 int MathMLSelectElement::getSelectedActionChildAndIndex(Element*& selectedChild) 81 81 { 82 ASSERT(hasLocalName( actionTag));82 ASSERT(hasLocalName(mactionTag)); 83 83 84 84 // We "round up or down to the closest allowable value" of the selection attribute, as suggested by the MathML specification. … … 101 101 Element* MathMLSelectElement::getSelectedActionChild() 102 102 { 103 ASSERT(hasLocalName( actionTag));103 ASSERT(hasLocalName(mactionTag)); 104 104 105 105 Element* child = firstElementChild();
Note:
See TracChangeset
for help on using the changeset viewer.