blob: 213d9ca11b72b36678fc13f799485e34f0d99436 [file] [log] [blame]
// Copyright 2019 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 "third_party/blink/renderer/core/layout/ng/list/layout_ng_inside_list_marker.h"
#include "third_party/blink/renderer/core/layout/layout_text.h"
namespace blink {
LayoutNGInsideListMarker::LayoutNGInsideListMarker(Element* element)
: LayoutInline(element) {}
bool LayoutNGInsideListMarker::IsOfType(LayoutObjectType type) const {
NOT_DESTROYED();
return type == kLayoutObjectNGInsideListMarker ||
LayoutInline::IsOfType(type);
}
PositionWithAffinity LayoutNGInsideListMarker::PositionForPoint(
const PhysicalOffset&) const {
NOT_DESTROYED();
DCHECK_GE(GetDocument().Lifecycle().GetState(),
DocumentLifecycle::kPrePaintClean);
return PositionBeforeThis();
}
} // namespace blink