DevTools: Make hash case-insensitive in chrome://inspect

BUG=330112

Review URL: https://codereview.chromium.org/108843003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@242122 0039d316-1c4b-4281-b951-d872f2087c98
parent bbc2e4c6
......@@ -40,7 +40,7 @@ function onload() {
}
function onHashChange() {
var hash = window.location.hash.slice(1);
var hash = window.location.hash.slice(1).toLowerCase();
if (!selectTab(hash))
selectTab('devices');
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment