summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/inspector/front-end/CookieItemsView.js
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/inspector/front-end/CookieItemsView.js')
-rw-r--r--Source/WebCore/inspector/front-end/CookieItemsView.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/WebCore/inspector/front-end/CookieItemsView.js b/Source/WebCore/inspector/front-end/CookieItemsView.js
index 75c7f84..dc76b39 100644
--- a/Source/WebCore/inspector/front-end/CookieItemsView.js
+++ b/Source/WebCore/inspector/front-end/CookieItemsView.js
@@ -101,9 +101,10 @@ WebInspector.CookieItemsView.prototype = {
this._emptyMsgElement.addStyleClass("hidden");
if (isAdvanced) {
this._treeElement.subtitle = String.sprintf(WebInspector.UIString("%d cookies (%s)"), this._cookies.length,
- Number.bytesToString(this._totalSize, WebInspector.UIString));
+ Number.bytesToString(this._totalSize));
this._deleteButton.visible = true;
}
+ this._cookiesTable.updateWidths();
},
_filterCookiesForDomain: function(allCookies)