| Index: trunk/Source/core/rendering/RenderInline.cpp
|
| ===================================================================
|
| --- trunk/Source/core/rendering/RenderInline.cpp (revision 190671)
|
| +++ trunk/Source/core/rendering/RenderInline.cpp (working copy)
|
| @@ -196,7 +196,7 @@
|
| for (RenderInline* currCont = continuation; currCont; currCont = currCont->inlineElementContinuation()) {
|
| LayoutBoxModelObject* nextCont = currCont->continuation();
|
| currCont->setContinuation(0);
|
| - currCont->setStyle(mutableStyle());
|
| + currCont->setStyle(style());
|
| currCont->setContinuation(nextCont);
|
| }
|
|
|
| @@ -359,7 +359,7 @@
|
| RenderInline* RenderInline::clone() const
|
| {
|
| RenderInline* cloneInline = new RenderInline(node());
|
| - cloneInline->setStyle(mutableStyle());
|
| + cloneInline->setStyle(style());
|
| cloneInline->setFlowThreadState(flowThreadState());
|
| return cloneInline;
|
| }
|
|
|