-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: align browser reported uncaught syntax errors (#881)
- Loading branch information
1 parent
f60e7f1
commit d4a0f30
Showing
3 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<!DOCTYPE html> | ||
<!-- | ||
Copyright 2020 New Relic Corporation. | ||
PDX-License-Identifier: Apache-2.0 | ||
--> | ||
<html> | ||
<head> | ||
<title>RUM Unit Test</title> | ||
{init} {config} {loader} | ||
</head> | ||
<body> | ||
This page throws an uncaught SyntaxError exception | ||
|
||
<!-- Fail with syntax error --> | ||
<script> | ||
- | ||
</script> | ||
|
||
<!-- Fail with an eval syntax error --> | ||
<script> | ||
eval('-') | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters