File size: 239 Bytes
a80a15d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>

<head>
  <title>Test JS Error</title>
</head>

<body>
  <h1>This page intentionally throws a JS error</h1>
  <script>
    // This will throw an unhandled error
    nonExistentFunction();
  </script>
</body>

</html>