| Index: third_party/WebKit/Source/devtools/front_end/resources/CookieItemsView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/resources/CookieItemsView.js b/third_party/WebKit/Source/devtools/front_end/resources/CookieItemsView.js
|
| index 42c424c9b6fe536cbc47372708efb6e8cc9e841f..0aedf80124a093f106ba9681a9109f51b11758b5 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/resources/CookieItemsView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/resources/CookieItemsView.js
|
| @@ -103,8 +103,10 @@ Resources.CookieItemsView = class extends UI.SimpleView {
|
| }
|
|
|
| if (!this._cookiesTable) {
|
| + const parsedURL = this._cookieDomain.asParsedURL();
|
| + const domain = parsedURL ? parsedURL.domain() : '';
|
| this._cookiesTable =
|
| - new Components.CookiesTable(false, this._update.bind(this), this._showDeleteButton.bind(this));
|
| + new Components.CookiesTable(false, this._update.bind(this), this._showDeleteButton.bind(this), domain);
|
| }
|
|
|
| this._cookiesTable.setCookies(this._cookies);
|
|
|