// Copyright 2020 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_LAYOUT_RUBY_COLUMN_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_LAYOUT_RUBY_COLUMN_H_ #include "third_party/blink/renderer/core/core_export.h" #include "third_party/blink/renderer/core/layout/layout_block_flow.h" namespace blink { class LayoutRubyBase; class LayoutRubyText; // LayoutRubyColumn represents 'inline-block/table' like objects, and wrap a // single pairing of a ruby base with its ruby text(s). // https://drafts.csswg.org/css-ruby-1/#ruby-columns // // See layout_ruby.h for further comments on the structure class CORE_EXPORT LayoutRubyColumn final : public LayoutBlockFlow { … }; template <> struct DowncastTraits<LayoutRubyColumn> { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_LAYOUT_RUBY_COLUMN_H_