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

Unified Diff: Source/core/rendering/style/StyleRareNonInheritedData.h

Issue 636993002: [CSS Grid Layout] Upgrade justify-content parsing to CSS3 Box Alignment spec. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebaseline some tests expectations. Created 6 years, 2 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/StyleRareNonInheritedData.h
diff --git a/Source/core/rendering/style/StyleRareNonInheritedData.h b/Source/core/rendering/style/StyleRareNonInheritedData.h
index 6d028f8aa8dbf46a3f892a4f1184eb8ffc1fe343..7fafb3edb8230aae6d184af3a27e0fcb8f5410b1 100644
--- a/Source/core/rendering/style/StyleRareNonInheritedData.h
+++ b/Source/core/rendering/style/StyleRareNonInheritedData.h
@@ -155,7 +155,9 @@ public:
unsigned m_alignItemsOverflowAlignment : 2; // OverflowAlignment
unsigned m_alignSelf : 4; // ItemPosition
unsigned m_alignSelfOverflowAlignment : 2; // OverflowAlignment
- unsigned m_justifyContent : 3; // EJustifyContent
+ unsigned m_justifyContent : 4; // ContentPosition
+ unsigned m_justifyContentDistribution : 3; // ContentDistributionType
+ unsigned m_justifyContentOverflowAlignment : 2; // OverflowAlignment
unsigned userDrag : 2; // EUserDrag
unsigned textOverflow : 1; // Whether or not lines that spill out should be truncated with "..."
« no previous file with comments | « Source/core/rendering/style/RenderStyleConstants.h ('k') | Source/core/rendering/style/StyleRareNonInheritedData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698