diff options
author | Timothy Flynn <trflynn89@pm.me> | 2021-04-04 11:49:22 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-04 18:30:15 +0200 |
commit | 26c97692471133a7b23af1404d14308725daf8b8 (patch) | |
tree | 0defc61fb973d832c9b34c57b1faf8e7ef577c74 /Base | |
parent | 1380dbeef35bfb43705ebf4447eb9e4cad411840 (diff) | |
download | serenity-26c97692471133a7b23af1404d14308725daf8b8.zip |
Base: Update checkbox test page to have a <label>
Diffstat (limited to 'Base')
-rw-r--r-- | Base/res/html/misc/checkbox.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Base/res/html/misc/checkbox.html b/Base/res/html/misc/checkbox.html index 86b8198b0c..9264dcc488 100644 --- a/Base/res/html/misc/checkbox.html +++ b/Base/res/html/misc/checkbox.html @@ -1,5 +1,6 @@ <html> - <input id=foo type=checkbox> This is a checkbox + <input id=foo type=checkbox> + <label for=foo>This is a checkbox</label> <pre id=bar></pre> <script> var foo = document.getElementById("foo"); |