| Index: Source/core/rendering/RenderQuote.cpp
|
| diff --git a/Source/core/rendering/RenderQuote.cpp b/Source/core/rendering/RenderQuote.cpp
|
| index 978f1684fe2be9b1c0f3c9aec0e402d4247a1707..07ef3f5953be0d89b8d17a7568ee10b3c678fd01 100644
|
| --- a/Source/core/rendering/RenderQuote.cpp
|
| +++ b/Source/core/rendering/RenderQuote.cpp
|
| @@ -278,7 +278,7 @@ RenderTextFragment* RenderQuote::findFragmentChild() const
|
| {
|
| // We walk from the end of the child list because, if we've had a first-letter
|
| // renderer inserted then the remaining text will be at the end.
|
| - while (RenderObject* child = lastChild()) {
|
| + while (LayoutObject* child = lastChild()) {
|
| if (child->isText() && toRenderText(child)->isTextFragment())
|
| return toRenderTextFragment(child);
|
| }
|
| @@ -325,7 +325,7 @@ void RenderQuote::attachQuote()
|
| return;
|
| }
|
|
|
| - for (RenderObject* predecessor = previousInPreOrder(); predecessor; predecessor = predecessor->previousInPreOrder()) {
|
| + for (LayoutObject* predecessor = previousInPreOrder(); predecessor; predecessor = predecessor->previousInPreOrder()) {
|
| // Skip unattached predecessors to avoid having stale m_previous pointers
|
| // if the previous node is never attached and is then destroyed.
|
| if (!predecessor->isQuote() || !toRenderQuote(predecessor)->isAttached())
|
|
|