diff options
author | Guy-Laurent Subri | 2024-10-10 13:31:17 +0200 |
---|---|---|
committer | GitHub | 2024-10-10 13:31:17 +0200 |
commit | 05d56605492cb89bebd80421a6d2afaa947344f0 (patch) | |
tree | 53abbe9bbe0a8fc21c77053dc4448c9853af38a6 /html/attributes_test.go | |
parent | 73373c8a290e8f16e0ac59b5aa082ca9a21cec98 (diff) | |
download | gomponents-05d56605492cb89bebd80421a6d2afaa947344f0.tar.lz gomponents-05d56605492cb89bebd80421a6d2afaa947344f0.tar.zst gomponents-05d56605492cb89bebd80421a6d2afaa947344f0.zip |
Add missing 'hidden' attribute (#224)
Diffstat (limited to 'html/attributes_test.go')
-rw-r--r-- | html/attributes_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/html/attributes_test.go b/html/attributes_test.go index 8f72e41..e5ea3f4 100644 --- a/html/attributes_test.go +++ b/html/attributes_test.go @@ -62,6 +62,7 @@ func TestSimpleAttributes(t *testing.T) { {Name: "for", Func: For}, {Name: "form", Func: FormAttr}, {Name: "height", Func: Height}, + {Name: "hidden", Func: Hidden}, {Name: "href", Func: Href}, {Name: "id", Func: ID}, {Name: "integrity", Func: Integrity}, |