| 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 4f9adf811c0b99dfec8b66a19560d8f683f183d7..715f9907dd267563acf0c1acde8fded6bab54ab6 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/Dialog.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/Dialog.js
|
| @@ -156,7 +156,7 @@ WebInspector.Dialog.prototype = {
|
| _restoreTabIndexOnElements: function()
|
| {
|
| for (var element of this._tabIndexMap.keys())
|
| - element.tabIndex = this._tabIndexMap.get(element);
|
| + element.tabIndex = /** @type {number} */(this._tabIndexMap.get(element));
|
| this._tabIndexMap.clear();
|
| },
|
|
|
|
|