Index: third_party/WebKit/Source/core/layout/ng/ng_physical_box_fragment.cc |
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_physical_box_fragment.cc b/third_party/WebKit/Source/core/layout/ng/ng_physical_box_fragment.cc |
index ef247607828dfc3918caf11a4037600ac72ab417..16e810889eedcb28a425ec3895fe88e119b0469a 100644 |
--- a/third_party/WebKit/Source/core/layout/ng/ng_physical_box_fragment.cc |
+++ b/third_party/WebKit/Source/core/layout/ng/ng_physical_box_fragment.cc |
@@ -16,6 +16,7 @@ NGPhysicalBoxFragment::NGPhysicalBoxFragment( |
Vector<NGPositionedFloat>& positioned_floats, |
const WTF::Optional<NGLogicalOffset>& bfc_offset, |
const NGMarginStrut& end_margin_strut, |
+ NGBorderEdges::Physical border_edges, |
RefPtr<NGBreakToken> break_token) |
: NGPhysicalFragment(layout_object, |
size, |
@@ -26,6 +27,7 @@ NGPhysicalBoxFragment::NGPhysicalBoxFragment( |
bfc_offset_(bfc_offset), |
end_margin_strut_(end_margin_strut) { |
children_.swap(children); |
+ border_edge_ = border_edges; |
} |
} // namespace blink |