summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/resources')
-rw-r--r--chrome/browser/resources/net_internals/httpcacheview.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/resources/net_internals/httpcacheview.js b/chrome/browser/resources/net_internals/httpcacheview.js
index 43b1e0a..809f66f 100644
--- a/chrome/browser/resources/net_internals/httpcacheview.js
+++ b/chrome/browser/resources/net_internals/httpcacheview.js
@@ -40,7 +40,7 @@ HttpCacheView.prototype.onHttpCacheInfoReceived = function(info) {
var li = addNode(keysOl, 'li');
var a = addNode(li, 'a');
addTextNode(a, key);
- a.href = 'chrome://net-internals/view-cache/' + key;
+ a.href = 'chrome://view-http-cache/' + key;
a.target = '_blank';
}
};