/parser/htmlparser/tests/html/form002.html

http://github.com/zpao/v8monkey · HTML · 22 lines · 22 code · 0 blank · 0 comment · 0 complexity · 89cc8d9368049aaaf27dc16f24362590 MD5 · raw file

  1. <html>
  2. <head>
  3. <title>test DEL tag</title>
  4. </head>
  5. <body>
  6. test Form <br>
  7. Forms cannot be nested. form tags outside form are ignored.
  8. <form action="http://alchemy/foo">
  9. Please input user name <input name=uid >
  10. <input type="submit">
  11. <form action="http://alchemy/bar">
  12. inner open tag ignored.
  13. Please input password <input name=pass >
  14. <input type="submit">
  15. </form>
  16. form terminated by inner end tag.
  17. input 3<input name=name3 >
  18. </form>
  19. The outer end tag ignored.
  20. <br>2normal text in body line 2.
  21. </body>
  22. </html>