summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/net_internals
diff options
context:
space:
mode:
authoreroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-28 20:09:30 +0000
committereroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-28 20:09:30 +0000
commitd87f845659b2e54622850acfc780b7fc07cfed6c (patch)
tree4e5cf6c8bfdca404b7e1a529336d74a0486e68e9 /chrome/browser/resources/net_internals
parentb4be4e3eac6965a0b4a917cf52734ddf2e957e1a (diff)
downloadchromium_src-d87f845659b2e54622850acfc780b7fc07cfed6c.zip
chromium_src-d87f845659b2e54622850acfc780b7fc07cfed6c.tar.gz
chromium_src-d87f845659b2e54622850acfc780b7fc07cfed6c.tar.bz2
Change the default tab on net-internals from "requests" to "data".
(This way don't need to give separate instructions on bug reports depending on what version of chrome they are using, can still just say "copy dump from about:net-internals") Review URL: http://codereview.chromium.org/2365002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48517 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources/net_internals')
-rw-r--r--chrome/browser/resources/net_internals/main.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/resources/net_internals/main.js b/chrome/browser/resources/net_internals/main.js
index 368ebf3..d0428fe 100644
--- a/chrome/browser/resources/net_internals/main.js
+++ b/chrome/browser/resources/net_internals/main.js
@@ -95,8 +95,8 @@ function onLoaded() {
var aNode = document.getElementById(tabIds[i]);
anchorMap[aNode.hash] = tabIds[i];
}
- // Default the empty hash to the requests tab.
- anchorMap['#'] = anchorMap[''] = 'requestsTab';
+ // Default the empty hash to the data tab.
+ anchorMap['#'] = anchorMap[''] = 'dataTab';
window.onhashchange = function() {
var tabId = anchorMap[window.location.hash];