Chromium Code Reviews| 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'; |
| } |