fix: update worker-script innerHTML implementation #572
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What is it?
Description
There are some bugs in Partytown's
<script>
implementation that were reported looong time ago along with MRs that were supposed to fix those bugs, unfortunately none was merged yet:In summary:
1. Partytown does not correctly handle nested
innerHTML
on<script>
elements.Take a look at this code:
It should log the content of the script. Unfortunately when run inside Partytown it returns empty string.
2. Partytown does not properly handle code like this:
GTM uses this internally when setting content of scripts added as custom HTML tags.
Use cases and why
I use GTM through Partytown. However I want to have some custom HTML tags that are always executed on main thread.
Code for custom HTML tag looks somewhat like this:
I then whitelist script IDs with
loadScriptsOnMainThread
. When this is deployed, I end up with nested calls forscript.innerHTML
andscript.text
. Changes in this MR fixes the problem.Checklist: