-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recurly.js Iframes throw security error when running dev server #15546
Comments
It appears that the error stems from if (DEV) {
// @ts-expect-error
element_prototype.__svelte_meta = null;
init_array_prototype_warnings();
} These warning checks are leading to |
crookedneighbor
added a commit
to crookedneighbor/svelte
that referenced
this issue
Mar 21, 2025
crookedneighbor
added a commit
to crookedneighbor/svelte
that referenced
this issue
Mar 21, 2025
crookedneighbor
added a commit
to crookedneighbor/svelte
that referenced
this issue
Mar 21, 2025
6 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
My team is upgrading our checkout pages to Svelte, but we use Recurly and it it looks like the Svelte dev server injects some JavaScript that is interacting with the Recurly iframes in a way that causes a Security error to be thrown and halts the execution of JavaScript from Recurly's client side script interacting with the iframe. When running in preview mode, the error does not occur and the iframe and JS code runs normally.
Sample App: https://github.com/crookedneighbor/svelte-recurly-dev-issue
Screenshot of the page in dev mode:
Screenshot of the page in preview mode:
Digging to the JS chunk where the error originates reveals:
In this case, the
this
is an array containing the Window and the Recurly's iframecontentWindow
. And callingget_proxied_value
on the iframe'scontentWindow
throws the error.Here's the
get_proxied_value
function:The part it doesn't like is checking
STATE_SYMBOL in value
, wherevalue
is the Recurly iframe'scontentWindow
. My guess is this function should have atry/catch
and return thevalue
. If I go in and modify it to this, it works just fine:This is preventing us from upgrading our checkout to Svelte.
Reproduction
Repo: https://github.com/crookedneighbor/svelte-recurly-dev-issue
Reproduction in Dev Mode
No Error Running in Preview Mode
Logs
System Info
Severity
blocking an upgrade
The text was updated successfully, but these errors were encountered: