I'm getting SCRIPT5022: SecurityError in zone.js (192,25)
intermittently when I load an Angular component in an iframe on IE11.
Other than that the frame is working and I don't notice anything broken.
This is the code around the error:
try {
return this._zoneDelegate.invokeTask(this, task, applyThis, applyArgs);
}
catch (error) {
if (this._zoneDelegate.handleError(this, error)) {
line 192: throw error;
}
}
Does anyone know what is causing this error? I've also found this issue on github which looks the same - https://github.com/angular/zone.js/issues/1001.