// 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_STYLE_DISPLAY_STYLE_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_STYLE_DISPLAY_STYLE_H_ #include "third_party/blink/renderer/core/style/content_data.h" namespace blink { class ContentData; // DisplayStyle contains the subset of ComputedStyle which is needed to // determine whether an Element needs a LayoutObject or not. It is useful // to keep this separate from ComputedStyle, because we sometimes need to // make that determination before the ComputedStyle is created. class DisplayStyle { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_STYLE_DISPLAY_STYLE_H_