| Index: chrome/browser/resources/bluetooth_internals/sidebar.js
|
| diff --git a/chrome/browser/resources/bluetooth_internals/sidebar.js b/chrome/browser/resources/bluetooth_internals/sidebar.js
|
| index 81fcb2ee368ca53f90d27d460c80b8a544f59671..f060e713979238a4cd899271606dd828771254f6 100644
|
| --- a/chrome/browser/resources/bluetooth_internals/sidebar.js
|
| +++ b/chrome/browser/resources/bluetooth_internals/sidebar.js
|
| @@ -45,6 +45,7 @@ cr.define('sidebar', function() {
|
| close: function() {
|
| this.sidebarDiv_.classList.remove('open');
|
| document.body.style.overflow = '';
|
| + document.dispatchEvent(new CustomEvent('contentfocus'));
|
| },
|
|
|
| /**
|
| @@ -53,6 +54,7 @@ cr.define('sidebar', function() {
|
| open: function() {
|
| document.body.style.overflow = 'hidden';
|
| this.sidebarDiv_.classList.add('open');
|
| + document.dispatchEvent(new CustomEvent('contentblur'));
|
| },
|
|
|
| /**
|
|
|