Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1013)

Unified Diff: Source/core/layout/LayoutQuote.cpp

Issue 1156143002: *** NOT FOR LANDING *** Text nodes should only inherit inheritable properties. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Some tests need to be rebaselined. Text nodes can no longer have z-index. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}
}

Powered by Google App Engine
This is Rietveld 408576698