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

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

Issue 2755733003: Implement relative utilities (Closed)
Patch Set: 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/layout/ng/ng_relative_utils.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_relative_utils.h b/third_party/WebKit/Source/core/layout/ng/ng_relative_utils.h
new file mode 100644
index 0000000000000000000000000000000000000000..c00686fba3267c5d1752a26c1b7f590a75324caa
--- /dev/null
+++ b/third_party/WebKit/Source/core/layout/ng/ng_relative_utils.h
@@ -0,0 +1,28 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
ikilpatrick 2017/03/16 19:08:36 2017
atotic 2017/03/20 17:31:45 done
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef NGRelativeUtils_h
+#define NGRelativeUtils_h
+
+#include "core/CoreExport.h"
+#include "core/layout/ng/geometry/ng_logical_size.h"
+#include "platform/text/TextDirection.h"
+
+namespace blink {
+
+class ComputedStyle;
+struct NGLogicalOffset;
+
+// Implements relative positioning spec:
+// https://www.w3.org/TR/css-position-3/#rel-pos
+// Return relative position as defined by style.
+CORE_EXPORT NGLogicalOffset
+ComputeRelativeOffset(const ComputedStyle& child_style,
+ NGWritingMode container_writing_mode,
+ TextDirection container_direction,
+ NGLogicalSize container_size);
+
+} // namespace blink
+
+#endif // NGRelativeUtils_h

Powered by Google App Engine
This is Rietveld 408576698