about summary refs log tree commit diff stats
path: root/html/attributes_test.go
diff options
context:
space:
mode:
authorMarkus Wüstenberg2023-01-17 13:00:16 +0100
committerGitHub2023-01-17 13:00:16 +0100
commite11dcad5185a1fb35a62076d4357c697da108ad7 (patch)
treeff03d97463405ddea7cd7b9dc1cb9d495f2f9f9a /html/attributes_test.go
parent866b767b089fb64494edfa7a33c1e15753b3a848 (diff)
downloadgomponents-e11dcad5185a1fb35a62076d4357c697da108ad7.tar.lz
gomponents-e11dcad5185a1fb35a62076d4357c697da108ad7.tar.zst
gomponents-e11dcad5185a1fb35a62076d4357c697da108ad7.zip
Add ColSpan and RowSpan attributes (#125)
Diffstat (limited to 'html/attributes_test.go')
-rw-r--r--html/attributes_test.go2
1 files changed, 2 insertions, 0 deletions
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,