| 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 c3346448c25157813f11d2f4b6228260a7e842bb..66fc1acd58b3c16007e15df3152f06694213c7b9 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,9 @@ Resources.CookieItemsView = class extends UI.SimpleView {
|
| }
|
|
|
| if (!this._cookiesTable) {
|
| + const url = new URL(this._cookieDomain);
|
| 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), url.hostname);
|
| }
|
|
|
| this._cookiesTable.setCookies(this._cookies);
|
|
|