// Copyright 2017 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_HTML_TABLE_CONSTANTS_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_HTML_TABLE_CONSTANTS_H_ namespace blink { // https://html.spec.whatwg.org/C/#dom-colgroup-span // https://html.spec.whatwg.org/C/#dom-col-span // https://html.spec.whatwg.org/C/#dom-tdth-colspan constexpr unsigned kDefaultColSpan = …; constexpr unsigned kMinColSpan = …; constexpr unsigned kMaxColSpan = …; // https://html.spec.whatwg.org/C/#dom-tdth-rowspan constexpr unsigned kDefaultRowSpan = …; constexpr unsigned kMaxRowSpan = …; constexpr unsigned kMinRowSpan = …; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_HTML_TABLE_CONSTANTS_H_