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

Unified Diff: Source/core/dom/LayoutTreeBuilder.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/dom/LayoutTreeBuilder.cpp
diff --git a/Source/core/dom/LayoutTreeBuilder.cpp b/Source/core/dom/LayoutTreeBuilder.cpp
index bbd8b190102dee95fe5b8dca49eb9a134da2b8bc..0d58447e9c0e686324ea3e71517769de6dbefba9 100644
--- a/Source/core/dom/LayoutTreeBuilder.cpp
+++ b/Source/core/dom/LayoutTreeBuilder.cpp
@@ -148,12 +148,13 @@ void LayoutTreeBuilderForElement::createLayoutObject()
void LayoutTreeBuilderForText::createLayoutObject()
{
- ComputedStyle& style = m_layoutObjectParent->mutableStyleRef();
+ const ComputedStyle& parentStyle = m_layoutObjectParent->styleRef();
+ RefPtr<ComputedStyle> style = ComputedStyle::createWithInheritableProperties(parentStyle);
leviw_travelin_and_unemployed 2015/05/29 17:44:52 Have you ran the perf tests? I wonder if this allo
- ASSERT(m_node->textLayoutObjectIsNeeded(style, *m_layoutObjectParent));
+ ASSERT(m_node->textLayoutObjectIsNeeded(*style, *m_layoutObjectParent));
- LayoutText* newLayoutObject = m_node->createTextLayoutObject(style);
- if (!m_layoutObjectParent->isChildAllowed(newLayoutObject, style)) {
+ LayoutText* newLayoutObject = m_node->createTextLayoutObject(parentStyle);
+ if (!m_layoutObjectParent->isChildAllowed(newLayoutObject, *style)) {
newLayoutObject->destroy();
return;
}
@@ -164,8 +165,7 @@ void LayoutTreeBuilderForText::createLayoutObject()
LayoutObject* nextLayoutObject = this->nextLayoutObject();
m_node->setLayoutObject(newLayoutObject);
- // Parent takes care of the animations, no need to call setAnimatableStyle.
- newLayoutObject->setStyle(&style);
+ newLayoutObject->setStyle(style);
m_layoutObjectParent->addChild(newLayoutObject, nextLayoutObject);
}

Powered by Google App Engine
This is Rietveld 408576698