diff --git a/addons/web/static/src/legacy/js/widgets/colorpicker.js b/addons/web/static/src/legacy/js/widgets/colorpicker.js index e071750d0bc1e09a9f374dd63ae55d5bd35d0842..b5c57afa6fcc8bebd92cb3b525ed0f080dbfeb49 100644 --- a/addons/web/static/src/legacy/js/widgets/colorpicker.js +++ b/addons/web/static/src/legacy/js/widgets/colorpicker.js @@ -43,7 +43,15 @@ var ColorpickerWidget = Widget.extend({ // anywhere on the screen, crossing iframes). // TODO adapt in master: these events should probably be bound in // `start` instead of `init` (at least to be more conventional). - this.$documents = $([window.top, ...Array.from(window.top.frames)].map(w => w.document)); + this.$documents = $([window.top, ...Array.from(window.top.frames).filter(frame => { + try { + const document = frame.document; + return !!document; + } catch { + // We cannot access the document (cross origin). + return false; + } + })].map(w => w.document)); this.$documents.on(`mousemove.${this.uniqueId}`, _.throttle((ev) => { this._onMouseMovePicker(ev); this._onMouseMoveSlider(ev);