| 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 96df23c5b8d4a0791ceb714ab5b389b086e08277..980e14a81fa95cd3a913cc42069c26688b6aaf38 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/resources/CookieItemsView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/resources/CookieItemsView.js
|
| @@ -125,7 +125,7 @@ WebInspector.CookieItemsView.prototype = {
|
| function populateResourcesForDocuments(resource)
|
| {
|
| var url = resource.documentURL.asParsedURL();
|
| - if (url && url.host == this._cookieDomain)
|
| + if (url && url.securityOrigin() == this._cookieDomain)
|
| resourceURLsForDocumentURL.push(resource.url);
|
| }
|
| WebInspector.forAllResources(populateResourcesForDocuments.bind(this));
|
|
|