blob: 312bf5b9ed8dc6f015c62473f3ec3c8a83d7c4f3 [file] [log] [blame]
// 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.
#include "core/layout/ng/ng_fragment.h"
#include "core/layout/ng/geometry/ng_border_edges.h"
#include "core/layout/ng/geometry/ng_logical_size.h"
namespace blink {
LayoutUnit NGFragment::InlineSize() const {
return writing_mode_ == kHorizontalTopBottom
? physical_fragment_.Size().width
: physical_fragment_.Size().height;
}
LayoutUnit NGFragment::BlockSize() const {
return writing_mode_ == kHorizontalTopBottom
? physical_fragment_.Size().height
: physical_fragment_.Size().width;
}
NGLogicalSize NGFragment::Size() const {
return physical_fragment_.Size().ConvertToLogical(
static_cast<NGWritingMode>(writing_mode_));
}
NGBorderEdges NGFragment::BorderEdges() const {
return NGBorderEdges::FromPhysical(physical_fragment_.BorderEdges(),
WritingMode());
}
NGPhysicalFragment::NGFragmentType NGFragment::Type() const {
return physical_fragment_.Type();
}
} // namespace blink