servo/tests/html/form_submission.html
2014-10-14 21:24:36 +05:30

13 lines
327 B
HTML

<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>