| Index: third_party/WebKit/Source/devtools/front_end/resources/DOMStorageItemsView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/resources/DOMStorageItemsView.js b/third_party/WebKit/Source/devtools/front_end/resources/DOMStorageItemsView.js
|
| index 143cf46a3b5731e3da7ffa626642f3fa3f0466b2..26fe71cbf7a85af14bf1995dd422d2db259c483c 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/resources/DOMStorageItemsView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/resources/DOMStorageItemsView.js
|
| @@ -40,6 +40,7 @@ Resources.DOMStorageItemsView = class extends Resources.StorageItemsView {
|
| {id: 'value', title: Common.UIString('Value'), sortable: false, editable: true, weight: 50}
|
| ]);
|
| this._dataGrid = new DataGrid.DataGrid(columns, this._editingCallback.bind(this), this._deleteCallback.bind(this));
|
| + this._dataGrid.setStriped(true);
|
| this._dataGrid.setName('DOMStorageItemsView');
|
| this._dataGrid.asWidget().show(this.element);
|
| this._eventListeners = [];
|
|
|