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

Unified Diff: third_party/WebKit/Source/core/style/StyleSurroundData.h

Issue 2824973002: Split StyleSurroundData::margin into four individual Lengths. (Closed)
Patch Set: Created 3 years, 8 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: third_party/WebKit/Source/core/style/StyleSurroundData.h
diff --git a/third_party/WebKit/Source/core/style/StyleSurroundData.h b/third_party/WebKit/Source/core/style/StyleSurroundData.h
index c6ebadf59f02bf154ad444ca987ba2d464de5680..933c428bef31676aae1ea80448c0d1c4c6b7f4d9 100644
--- a/third_party/WebKit/Source/core/style/StyleSurroundData.h
+++ b/third_party/WebKit/Source/core/style/StyleSurroundData.h
@@ -51,7 +51,10 @@ class CORE_EXPORT StyleSurroundData : public RefCounted<StyleSurroundData> {
Length right_;
Length top_;
Length bottom_;
- LengthBox margin_;
+ Length margin_left_;
+ Length margin_right_;
+ Length margin_top_;
+ Length margin_bottom_;
LengthBox padding_;
BorderData border_;

Powered by Google App Engine
This is Rietveld 408576698