bugzilla-3855.html 867 B

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
  2. "http://www.w3.org/TR/html4/strict.dtd">
  3. <html lang="en">
  4. <head>
  5. </head>
  6. <body>
  7. <p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=3855">Bugzilla Bug 3855</a> Table with Form Field and Hidden DIV crashes Safari</p>
  8. <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b>
  9. Type in the text field below.</p>
  10. <p id="success" style="background-color:palegreen; padding:3px;"><b>TEST PASS:</b>
  11. Safari will not crash, text will show up in text field as expected.
  12. </p>
  13. <p id="failure" style="background-color:#FF3300; padding:3px;"><b>TEST FAIL:</b>
  14. Safari will crash.
  15. </p>
  16. Type in the input field below:
  17. <form>
  18. <div style="display:none;">
  19. <table>
  20. <tr>
  21. <td>test</td>
  22. </tr>
  23. </table>
  24. </div>
  25. <input type='text' value='' />
  26. </form>
  27. </body>
  28. </html>