Base: Add two more radio buttons to HTML input test page
You can't really test radio buttons with just one button.
This commit is contained in:
parent
f96747b722
commit
bcfe275563
Notes:
sideshowbarker
2024-07-17 01:06:10 +09:00
Author: https://github.com/MacDue Commit: https://github.com/SerenityOS/serenity/commit/bcfe275563 Pull-request: https://github.com/SerenityOS/serenity/pull/18046 Reviewed-by: https://github.com/AtkinsSJ
1 changed files with 3 additions and 1 deletions
|
@ -32,7 +32,9 @@
|
|||
<input type="range" id="range" value="range" /><br />
|
||||
<input type="color" id="color" value="color" /><br />
|
||||
<input type="checkbox" id="checkbox" value="checkbox" /><br />
|
||||
<input type="radio" id="radio" value="radio" /><br />
|
||||
<input type="radio" id="radio-a" value="a" name="test-radio" /><br />
|
||||
<input type="radio" id="radio-b" value="b" name="test-radio" /><br />
|
||||
<input type="radio" id="radio-c" value="c" name="test-radio" /><br />
|
||||
<input type="file" id="file" value="file" /><br />
|
||||
<input type="submit" id="submit" value="submit" /><br />
|
||||
<input type="image" id="image" value="image" /><br />
|
||||
|
|
Loading…
Add table
Reference in a new issue