You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using cVim chrome-extension, it will insert <iframe src="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/cmdline_frame.html" id="cVim-command-frame"></iframe> into body
I am using vue-router, and it is throwing error to block the app to run:
vue.common.js:1140
Uncaught SecurityError: Blocked a frame with origin "https://xxxxx" from accessing a frame with origin "chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh". The frame requesting access has a protocol of "https", the frame being accessed has a protocol of "chrome-extension". Protocols must match.
It is failing at:
functioninDoc(node,win){win=win||window;vardoc=win.document.documentElement;// !!! here --> Protocols must matchvarparent=node&&node.parentNode;varisInDoc=doc===node||doc===parent||!!(parent&&parent.nodeType===1&&doc.contains(parent));if(!isInDoc){varframes=win.frames;if(frames){for(vari=0;i<frames.length;i++){if(inDoc(node,frames[i])){returntrue;}}}}returnisInDoc;}
What is Expected?
Even with a chrome-extension, app should run.
What is actually happening?
Due to the error, vue app is not running, giving a blank screen to users.
The text was updated successfully, but these errors were encountered:
Vue.js version
1.0.23
Reproduction Link
None, since it is related to chrome extension
Steps to reproduce
I am using cVim chrome-extension, it will insert
<iframe src="chrome-extension://ihlenndgcmojhcghmfjfneahoeklbjjh/cmdline_frame.html" id="cVim-command-frame"></iframe>
into bodyI am using vue-router, and it is throwing error to block the app to run:
It is failing at:
What is Expected?
Even with a chrome-extension, app should run.
What is actually happening?
Due to the error, vue app is not running, giving a blank screen to users.
The text was updated successfully, but these errors were encountered: