Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4203)

Unified Diff: chrome/browser/resources/net_internals/util.js

Issue 7530020: Re-design the "data" tab on about:net-internals. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Remove a TODO which I don't intend to do anymore Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/net_internals/util.js
===================================================================
--- chrome/browser/resources/net_internals/util.js (revision 94563)
+++ chrome/browser/resources/net_internals/util.js (working copy)
@@ -41,6 +41,9 @@
* Sets the visibility for a DOM node.
*/
function setNodeDisplay(node, isVisible) {
+ if (!isVisible && node.id == "importTab") {
+ debugger;
mmenke 2011/07/29 14:18:53 What's this for, exactly? Break into the debugger
eroman 2011/07/29 15:15:08 Oops, that was left-over from my debugging session
+ }
node.style.display = isVisible ? '' : 'none';
}

Powered by Google App Engine
This is Rietveld 408576698