summaryrefslogtreecommitdiffstats
path: root/WebCore/inspector/front-end/CookieItemsView.js
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/inspector/front-end/CookieItemsView.js')
-rw-r--r--WebCore/inspector/front-end/CookieItemsView.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/inspector/front-end/CookieItemsView.js b/WebCore/inspector/front-end/CookieItemsView.js
index b5674b8..1baf4a6 100644
--- a/WebCore/inspector/front-end/CookieItemsView.js
+++ b/WebCore/inspector/front-end/CookieItemsView.js
@@ -122,7 +122,7 @@ WebInspector.CookieItemsView.prototype = {
for (var id in WebInspector.resources) {
var resource = WebInspector.resources[id];
- var match = resource.documentURL.match(WebInspector.URLRegExp);
+ var match = resource.documentURL.match(WebInspector.GenericURLRegExp);
if (match && match[2] === this._cookieDomain)
resourceURLsForDocumentURL.push(resource.url);
}