// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_LIST_LAYOUT_INLINE_LIST_ITEM_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_LIST_LAYOUT_INLINE_LIST_ITEM_H_ #include "third_party/blink/renderer/core/html/list_item_ordinal.h" #include "third_party/blink/renderer/core/layout/layout_inline.h" namespace blink { // A LayoutObject subclass for 'display: inline list-item'. class LayoutInlineListItem final : public LayoutInline { … }; template <> struct DowncastTraits<LayoutInlineListItem> { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_LIST_LAYOUT_INLINE_LIST_ITEM_H_