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