Changeset 58049 in webkit


Ignore:
Timestamp:
Apr 21, 2010 8:47:27 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-21 François Sausset <François Sausset>

Reviewed by Kenneth Rohde Christiansen.

Fix to take into account a change made in "StringImpl".
https://bugs.webkit.org/show_bug.cgi?id=37763

  • mathml/RenderMathMLOperator.cpp: (WebCore::RenderMathMLOperator::updateFromElement):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r58045 r58049  
     12010-04-21  François Sausset  <sausset@gmail.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        Fix to take into account a change made in "StringImpl".
     6        https://bugs.webkit.org/show_bug.cgi?id=37763
     7
     8        * mathml/RenderMathMLOperator.cpp:
     9        (WebCore::RenderMathMLOperator::updateFromElement):
     10
    1112010-04-21  Andy Estes  <aestes@apple.com>
    212
  • trunk/WebCore/mathml/RenderMathMLOperator.cpp

    r55607 r58049  
    194194        else if (node()->nodeType() == Node::ELEMENT_NODE)
    195195            if (Element* mo = static_cast<Element*>(node()))
    196                 text = new (renderArena()) RenderText(node(), StringImpl::create(mo->textContent()));
     196                text = new (renderArena()) RenderText(node(), StringImpl::create(mo->textContent().characters(), mo->textContent().length()));
    197197        // If we can't figure out the text, leave it blank.
    198198        if (text) {
Note: See TracChangeset for help on using the changeset viewer.