aboutsummaryrefslogtreecommitdiff
path: root/test/html/render/form-display-none.html
diff options
context:
space:
mode:
authorRodrigo Arias Mallo <rodarima@gmail.com>2025-08-30 22:25:43 +0200
committerRodrigo Arias Mallo <rodarima@gmail.com>2025-08-30 22:25:43 +0200
commit47ab7c704f415454fb3c908f9fe0bdebb3239ef3 (patch)
tree54d39c355e2e14d0caf31858f8f1f2b769af4a5a /test/html/render/form-display-none.html
parent73e52f3582329a5e222884a5eaea9f3e21c9a321 (diff)
Add additional input types in form test
Diffstat (limited to 'test/html/render/form-display-none.html')
-rw-r--r--test/html/render/form-display-none.html13
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>