-
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.
fix: Ignore reserved attribute names on UserActions tied to the window (
- Loading branch information
1 parent
cdd45fb
commit 8410dbe
Showing
3 changed files
with
57 additions
and
5 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,19 @@ | ||
<!DOCTYPE html> | ||
<!-- | ||
Copyright 2020 New Relic Corporation. | ||
PDX-License-Identifier: Apache-2.0 | ||
--> | ||
<html> | ||
<head> | ||
<title>User Action Test</title> | ||
{init} {config} {loader} | ||
</head> | ||
<body style="height: 200vh; overflow: scroll;"> | ||
<button id="pay-btn" class="btn-cart-add flex-grow container" type="submit">Create click user action</button> | ||
<input type="text" id="textbox"/> | ||
<script> | ||
// having a type attribute on the window should be ignored by the collected UserActions | ||
window.type = 'test' | ||
</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