На странице iframe, домен общий. У iframe стоит sandbox="allow-same-origin". Пытаюсь повесить событие
<iframe id="page" src="/" sandbox="allow-same-origin"></iframe>
document.getElementById("page").onload = function() {
editor = this.contentWindow.document;
editor.addEventListener("contextmenu", function(e) {
//тут код события
});
}
В firefox событие срабатывает, в chrome - нет (Blocked script execution in '' because the document's frame is sandboxed and the 'allow-scripts' permission is not set.). Allow-scripts не могу поставить, нужно отключить скрипты в iframe.