| Index: third_party/WebKit/Source/devtools/front_end/ui/Dialog.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/Dialog.js b/third_party/WebKit/Source/devtools/front_end/ui/Dialog.js
|
| index b905558849c8ab93c35bc1a815e82890b37ebd7c..aa64dee3987564e607ec427d760f199b59b22f61 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/Dialog.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/Dialog.js
|
| @@ -35,7 +35,7 @@ UI.Dialog = class extends UI.GlassPane {
|
| this.contentElement.tabIndex = 0;
|
| this.contentElement.addEventListener('focus', () => this.widget().focus(), false);
|
| this.contentElement.addEventListener('keydown', this._onKeyDown.bind(this), false);
|
| - this.setBlockPointerEvents(true);
|
| + this.setPointerEventsBehavior(UI.GlassPane.PointerEventsBehavior.BlockedByGlassPane);
|
| this.setSetOutsideClickCallback(event => {
|
| this.hide();
|
| event.consume(true);
|
|
|