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

Unified Diff: Source/core/style/ComputedStyle.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
« Source/core/layout/LayoutText.cpp ('K') | « Source/core/style/ComputedStyle.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/style/ComputedStyle.cpp
diff --git a/Source/core/style/ComputedStyle.cpp b/Source/core/style/ComputedStyle.cpp
index c01ddf928a2c652f6b556d64357ec39ae634dc64..a64522101f3a919fd330c99e52fed73263e8b6fc 100644
--- a/Source/core/style/ComputedStyle.cpp
+++ b/Source/core/style/ComputedStyle.cpp
@@ -94,6 +94,15 @@ PassRefPtr<ComputedStyle> ComputedStyle::clone(const ComputedStyle& other)
return adoptRef(new ComputedStyle(other));
}
+PassRefPtr<ComputedStyle> ComputedStyle::createWithInheritableProperties(const ComputedStyle& parentStyle)
+{
+ RefPtr<ComputedStyle> newStyle = ComputedStyle::create();
+ newStyle->inheritFrom(parentStyle);
+ newStyle->inheritUnicodeBidiFrom(parentStyle);
+ newStyle->m_svgStyle = parentStyle.m_svgStyle;
+ return newStyle.release();
+}
+
ALWAYS_INLINE ComputedStyle::ComputedStyle()
: m_box(initialStyle()->m_box)
, visual(initialStyle()->visual)
« Source/core/layout/LayoutText.cpp ('K') | « Source/core/style/ComputedStyle.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698