Index: Source/core/layout/LayoutQuote.cpp |
diff --git a/Source/core/layout/LayoutQuote.cpp b/Source/core/layout/LayoutQuote.cpp |
index da60a834f9eebe416d694bef5c3db8fa7f6eacda..b1a16a979f01556141c9d59fd86df2cc3f3c69c3 100644 |
--- a/Source/core/layout/LayoutQuote.cpp |
+++ b/Source/core/layout/LayoutQuote.cpp |
@@ -265,11 +265,11 @@ void LayoutQuote::updateText() |
RenderTextFragment* fragment = findFragmentChild(); |
if (fragment) { |
- fragment->setStyle(style()); |
+ fragment->setStyle(mutableStyle()); |
fragment->setContentString(m_text.impl()); |
} else { |
fragment = new RenderTextFragment(&document(), m_text.impl()); |
- fragment->setStyle(style()); |
+ fragment->setStyle(mutableStyle()); |
addChild(fragment); |
} |
} |