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

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

Issue 333423005: [CSS Grid Layout] Implement 'justify-items' parsing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Applied suggested changes. Created 6 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/StyleRareNonInheritedData.h
diff --git a/Source/core/rendering/style/StyleRareNonInheritedData.h b/Source/core/rendering/style/StyleRareNonInheritedData.h
index 8a724ac79466937e8d199b5633b797f82469b356..71076f1b66a364939560b06a742307b39ca333d8 100644
--- a/Source/core/rendering/style/StyleRareNonInheritedData.h
+++ b/Source/core/rendering/style/StyleRareNonInheritedData.h
@@ -191,6 +191,10 @@ public:
unsigned m_isolation : 1; // Isolation
+ unsigned m_justifyItems : 4; // ItemPosition
+ unsigned m_justifyItemsOverflowAlignment : 2; // OverflowAlignment
+ unsigned m_justifyItemsIsLegacy: 1; // Whether or not alignment uses the 'legacy' keyword.
+
unsigned m_justifySelf : 4; // ItemPosition
unsigned m_justifySelfOverflowAlignment : 2; // OverflowAlignment

Powered by Google App Engine
This is Rietveld 408576698