diff options
author | Markus Wüstenberg | 2023-05-11 11:22:01 +0200 |
---|---|---|
committer | Markus Wüstenberg | 2023-05-11 11:22:01 +0200 |
commit | 4248e85def552b68672b8f6f4de12f0e2bf50517 (patch) | |
tree | 1c8c6d8900db837aa4790841452a78ba6c742b21 /html/attributes_test.go | |
parent | 4f9709afcc83b617f17f8e5757d58a55be7bf2cf (diff) | |
download | gomponents-4248e85def552b68672b8f6f4de12f0e2bf50517.tar.lz gomponents-4248e85def552b68672b8f6f4de12f0e2bf50517.tar.zst gomponents-4248e85def552b68672b8f6f4de12f0e2bf50517.zip |
Add "checked" bool attribute
Fixes #127.
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 5e2c179..bcb6daf 100644 --- a/html/attributes_test.go +++ b/html/attributes_test.go @@ -14,6 +14,7 @@ func TestBooleanAttributes(t *testing.T) { "async": Async, "autofocus": AutoFocus, "autoplay": AutoPlay, + "checked": Checked, "controls": Controls, "defer": Defer, "disabled": Disabled, |