// Copyright 2015 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_GENERATED_CHILDREN_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_GENERATED_CHILDREN_H_ #include "third_party/blink/renderer/core/html_element_type_helpers.h" #include "third_party/blink/renderer/core/layout/layout_object.h" namespace blink { // We only create "generated" child layoutObjects like one for first-letter if: // - the firstLetterBlock can have children in the DOM and // - the block doesn't have any special assumption on its text children. // This correctly prevents form controls from having such layoutObjects. static bool CanHaveGeneratedChildren(const LayoutObject& layout_object) { … } } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_GENERATED_CHILDREN_H_