/parser/htmlparser/tests/crashtests/73331-1.html

http://github.com/zpao/v8monkey · HTML · 27 lines · 25 code · 2 blank · 0 comment · 0 complexity · 07c1455e9e9df8c7834bf5014eb8fff6 MD5 · raw file

  1. <html>
  2. <head>
  3. <script>
  4. function crashme() {
  5. var obj = document.getElementById('popupid');
  6. obj.style.visibility='hidden';
  7. }
  8. </script>
  9. </head>
  10. <body onload="crashme();">
  11. <a href="http://www.mozilla.org/">http://www.mozilla.org/</a>
  12. <div id="popupid">
  13. <font>
  14. <script>
  15. document.write('<form>');
  16. document.write('<span>');
  17. document.write('<input>');
  18. document.write('</span>');
  19. document.write('<br>');
  20. document.write('</form>');
  21. </script>
  22. </font>
  23. </div>
  24. </body>
  25. </html>