From e11dcad5185a1fb35a62076d4357c697da108ad7 Mon Sep 17 00:00:00 2001 From: Markus Wüstenberg Date: Tue, 17 Jan 2023 13:00:16 +0100 Subject: Add ColSpan and RowSpan attributes (#125) --- html/attributes_test.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'html/attributes_test.go') diff --git a/html/attributes_test.go b/html/attributes_test.go index 50f0b53..4071101 100644 --- a/html/attributes_test.go +++ b/html/attributes_test.go @@ -44,6 +44,7 @@ func TestSimpleAttributes(t *testing.T) { "charset": Charset, "class": Class, "cols": Cols, + "colspan": ColSpan, "content": Content, "enctype": EncType, "for": For, @@ -66,6 +67,7 @@ func TestSimpleAttributes(t *testing.T) { "rel": Rel, "role": Role, "rows": Rows, + "rowspan": RowSpan, "src": Src, "srcset": SrcSet, "style": StyleAttr, -- cgit 1.4.1