about summary refs log tree commit diff stats
path: root/html/attributes_test.go
diff options
context:
space:
mode:
authorMarkus Wüstenberg2024-06-06 12:49:01 +0200
committerGitHub2024-06-06 10:49:01 +0000
commitb950ec2c42bd613fa23625ab6360f58b9ba28e07 (patch)
tree45794e05ec926db604412975641fbfbdf9b302f6 /html/attributes_test.go
parent81b2d6a9e39ff8859400bfa806cb3e712049615c (diff)
downloadgomponents-b950ec2c42bd613fa23625ab6360f58b9ba28e07.tar.lz
gomponents-b950ec2c42bd613fa23625ab6360f58b9ba28e07.tar.zst
gomponents-b950ec2c42bd613fa23625ab6360f58b9ba28e07.zip
Add LabelAttr and List attributes (#175)
Fixes #168 and fixes #169.
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 1801428..acd17be 100644
--- a/html/attributes_test.go
+++ b/html/attributes_test.go
@@ -61,7 +61,9 @@ func TestSimpleAttributes(t *testing.T) {
 		{Name: "href", Func: Href},
 		{Name: "id", Func: ID},
 		{Name: "integrity", Func: Integrity},
+		{Name: "label", Func: LabelAttr},
 		{Name: "lang", Func: Lang},
+		{Name: "list", Func: List},
 		{Name: "loading", Func: Loading},
 		{Name: "max", Func: Max},
 		{Name: "maxlength", Func: MaxLength},