d77ab2dd4abb734d5aa7040358107ea8da26c6a8.svn-base 603 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Image tests</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6. <script type="text/javascript" src="../../test.js"></script>
  7. </head>
  8. <body>
  9. Image without src attribute, should not crash:
  10. <img style="width:50px;height:50px;border:1px solid red;display:block;" />
  11. Image with broken src attribute, should not crash:
  12. <img src="404" style="width:50px;height:50px;border:1px solid red;display:block;" />
  13. <img src="404_2" style="width:50px;height:50px;border:1px solid red;display:block;" />
  14. </body>
  15. </html>