diff options
author | Markus Wüstenberg | 2020-11-16 13:03:54 +0100 |
---|---|---|
committer | GitHub | 2020-11-16 13:03:54 +0100 |
commit | 633b000d9115dbf7d4cc072cb1349268a09c3375 (patch) | |
tree | 670295c5e4dfda7a4655a2a2ec1ecc43d7f6aa51 /attr/simple_test.go | |
parent | 108f8d9ba564aef06155f6fdc83e140bb5953b3d (diff) | |
download | gomponents-633b000d9115dbf7d4cc072cb1349268a09c3375.tar.lz gomponents-633b000d9115dbf7d4cc072cb1349268a09c3375.tar.zst gomponents-633b000d9115dbf7d4cc072cb1349268a09c3375.zip |
Add svg element (#46)
Also add `cols` and `rows` attributes. Fixes #43.
Diffstat (limited to 'attr/simple_test.go')
-rw-r--r-- | attr/simple_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/attr/simple_test.go b/attr/simple_test.go index 6181322..d006b76 100644 --- a/attr/simple_test.go +++ b/attr/simple_test.go @@ -15,6 +15,7 @@ func TestSimpleAttributes(t *testing.T) { "autocomplete": attr.AutoComplete, "charset": attr.Charset, "class": attr.Class, + "cols": attr.Cols, "content": attr.Content, "form": attr.Form, "height": attr.Height, @@ -30,6 +31,7 @@ func TestSimpleAttributes(t *testing.T) { "preload": attr.Preload, "placeholder": attr.Placeholder, "rel": attr.Rel, + "rows": attr.Rows, "src": attr.Src, "style": attr.Style, "tabindex": attr.TabIndex, |