diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2025-08-30 22:25:43 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2025-08-30 22:25:43 +0200 |
commit | 47ab7c704f415454fb3c908f9fe0bdebb3239ef3 (patch) | |
tree | 54d39c355e2e14d0caf31858f8f1f2b769af4a5a /test/html/render | |
parent | 73e52f3582329a5e222884a5eaea9f3e21c9a321 (diff) |
Add additional input types in form test
Diffstat (limited to 'test/html/render')
-rw-r--r-- | test/html/render/form-display-none.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/html/render/form-display-none.html b/test/html/render/form-display-none.html index 4842f1ba..5b4e0c1d 100644 --- a/test/html/render/form-display-none.html +++ b/test/html/render/form-display-none.html @@ -16,6 +16,7 @@ <form method="POST" enctype="multipart/form-data"> <label for="text">First name:</label> <input type="text" id="text" name="text"> + <input type="password" id="password" name="password"> <label for="cars">Choose a car:</label> <select id="cars" name="cars"> <option value="volvo">Volvo</option> @@ -33,7 +34,18 @@ <input type="checkbox" id="checkbox" name="checkbox" value=""> Select me! </label> + <label> + <input type="radio" id="radio-fast" name="radio" value="fast" checked> + Fast + </label> + <label> + <input type="radio" id="radio-slow" name="radio" value="slow"> + Slow + </label> <input type="hidden" id="hidden" name="hidden" value="Hidden value"> + <input type="image" id="image" name="image" src="pic.png"> + <input type="button" id="button" name="button" value="Button!"> + <input type="unknown" id="unknown" name="unknown"> <button>Hello</button> </form> </div> @@ -41,6 +53,7 @@ <p>The ones below are outside the form</p> <input style="display: none" type="text" name="out-text"> <button style="display: none">Look at this <img src="pic.png"> image</button> + <isindex style="display: none" prompt="Search for " id="isindex"> <hr> </body> </html> |