mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
Add click handler for <input type=submit>
This commit is contained in:
parent
05134e6d1f
commit
749e2394c5
2 changed files with 20 additions and 2 deletions
13
tests/html/form_submission.html
Normal file
13
tests/html/form_submission.html
Normal file
|
@ -0,0 +1,13 @@
|
|||
<html>
|
||||
<head></head>
|
||||
<body>
|
||||
<!-- Run with nc -l 8000 -->
|
||||
<form action="http://localhost:8000" method=get id="foo">
|
||||
<input name=bar type=checkbox checked>
|
||||
<input name=baz value="baz1" type=radio checked>
|
||||
<input name=baz value="baz2" type=radio>
|
||||
<input type=text name=bye value="hi!">
|
||||
<input type=submit>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue