mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
23 lines
579 B
HTML
23 lines
579 B
HTML
<html>
|
|
<head>
|
|
<title>test DEL tag</title>
|
|
</head>
|
|
<body>
|
|
test Form <br>
|
|
Forms cannot be nested. form tags outside form are ignored.
|
|
<form action="http://alchemy/foo">
|
|
Please input user name <input name=uid >
|
|
<input type="submit">
|
|
<form action="http://alchemy/bar">
|
|
inner open tag ignored.
|
|
Please input password <input name=pass >
|
|
<input type="submit">
|
|
</form>
|
|
form terminated by inner end tag.
|
|
input 3<input name=name3 >
|
|
</form>
|
|
The outer end tag ignored.
|
|
<br>2normal text in body line 2.
|
|
</body>
|
|
</html>
|