jserroronload.php 413 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Page with JavaScript errors on load</title>
  5. <script>
  6. function loadError() {
  7. var xx = document.propertyThatDoesNotExist.xyz;
  8. }
  9. </script>
  10. </head>
  11. <body onload="loadError()">
  12. <p>
  13. This page has a JavaScript error in the onload event.
  14. This is often a problem to using normal Javascript injection
  15. techniques.
  16. </p>
  17. </body>
  18. </html>