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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_margin_strut.h

Issue 2313873002: Initial implementation of Collapsing Margins computational logic for LayoutNG (Closed)
Patch Set: synced to the head Created 4 years, 3 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/layout/ng/ng_margin_strut.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_margin_strut.h b/third_party/WebKit/Source/core/layout/ng/ng_margin_strut.h
deleted file mode 100644
index f8d76bf98fa7ca6f0420a9315b7b9d44a8b04f60..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/layout/ng/ng_margin_strut.h
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef NGMarginStrut_h
-#define NGMarginStrut_h
-
-#include "core/CoreExport.h"
-#include "platform/LayoutUnit.h"
-
-namespace blink {
-
-// This struct is used for the margin collapsing calculation.
-struct NGMarginStrut {
- LayoutUnit margin_block_start;
- LayoutUnit margin_block_end;
-
- LayoutUnit negative_margin_block_start;
- LayoutUnit negative_margin_block_end;
-};
-
-} // namespace blink
-
-#endif // NGMarginStrut_h

Powered by Google App Engine
This is Rietveld 408576698