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

Unified Diff: Source/core/rendering/style/RenderStyle.cpp

Issue 17155007: [CSS3] Parsing the property, text-justify. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@parsingTextJustify
Patch Set: Created 7 years, 6 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/rendering/style/RenderStyle.cpp
diff --git a/Source/core/rendering/style/RenderStyle.cpp b/Source/core/rendering/style/RenderStyle.cpp
index 07ab64851abe98b0c2693b1cfacc94f4587bd88b..4ec253100d6ff13db6ef9479bd6f4974df59b102 100644
--- a/Source/core/rendering/style/RenderStyle.cpp
+++ b/Source/core/rendering/style/RenderStyle.cpp
@@ -435,6 +435,7 @@ StyleDifference RenderStyle::diff(const RenderStyle* other, unsigned& changedCon
|| rareInheritedData->indent != other->rareInheritedData->indent
#if ENABLE(CSS3_TEXT)
|| rareInheritedData->m_textAlignLast != other->rareInheritedData->m_textAlignLast
+ || rareInheritedData->m_textJustify != other->rareInheritedData->m_textJustify
|| rareInheritedData->m_textIndentLine != other->rareInheritedData->m_textIndentLine
#endif
|| rareInheritedData->m_effectiveZoom != other->rareInheritedData->m_effectiveZoom

Powered by Google App Engine
This is Rietveld 408576698