// 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. #include "third_party/blink/renderer/core/mathml/mathml_table_cell_element.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/blink/renderer/core/dom/document.h" #include "third_party/blink/renderer/core/testing/null_execution_context.h" #include "third_party/blink/renderer/platform/heap/garbage_collected.h" #include "third_party/blink/renderer/platform/testing/task_environment.h" #include "third_party/blink/renderer/platform/wtf/text/string_builder.h" namespace blink { // Test parsing of the columnspan attribute as described in (8) of // https://html.spec.whatwg.org/#algorithm-for-processing-rows // TODO(crbug.com/1371806: Convert this to a WPT test when MathML has an IDL // for that. See https://github.com/w3c/mathml-core/issues/166 TEST(MathMLTableCellElementTest, colSpan_parsing) { … } // Test parsing of the rowspan attribute as described in (9) of // https://html.spec.whatwg.org/#algorithm-for-processing-rows // TODO(crbug.com/1371806: Convert this to a WPT test when MathML has an IDL // for that. See https://github.com/w3c/mathml-core/issues/166 TEST(MathMLTableCellElementTest, rowspan_parsing) { … } } // namespace blink