エラーメッセージ
Error: Permission denied to access property "x"
エラーの種類
エラーの原因
権限が与えられていないオブジェクトにアクセスしようとしています。たとえば、同一オリジンポリシーに違反する、異なるドメインからロードされた <iframe>
要素などです。
このエラーを起こすコードの例
<!DOCTYPE html> <html> <head> <iframe id="myframe" src="https://www1.w3c-test.org/common/blank.html"></iframe> <script> console.log(document.getElementById('myframe').contentWindow.document); // Error: Permission denied to access property "document" </script> </head> <body></body> </html>