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

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

Issue 2705143002: Split StyleSurroundData::offset into separate members. (Closed)
Patch Set: Fix typo Created 3 years, 9 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 4ddee24c1299aa130681edccaa678819766cf1b9..af07ce05bb554460d2811ca01a29c68ae147fd22 100644
--- a/third_party/WebKit/Source/core/style/StyleSurroundData.h
+++ b/third_party/WebKit/Source/core/style/StyleSurroundData.h
@@ -47,7 +47,10 @@ class CORE_EXPORT StyleSurroundData : public RefCounted<StyleSurroundData> {
bool operator==(const StyleSurroundData&) const;
bool operator!=(const StyleSurroundData& o) const { return !(*this == o); }
- LengthBox offset;
+ Length m_left;
+ Length m_right;
+ Length m_top;
+ Length m_bottom;
LengthBox margin;
LengthBox padding;
BorderData border;
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.cpp ('k') | third_party/WebKit/Source/core/style/StyleSurroundData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698