Skip to content

Commit

Permalink
Fix tracing in CSSModule.deleteRule (related to issue 5859)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonlindholm committed Oct 3, 2012
1 parent 4aed1a1 commit 2b06d80
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions extension/content/firebug/css/cssModule.js
Expand Up @@ -93,12 +93,12 @@ Firebug.CSSModule = Obj.extend(Obj.extend(Firebug.Module, Firebug.EditorSelector
{
if (src instanceof window.Element)
{
FBTrace.sysout("deleteRule: " + ruleIndex + " " + src.cssRules.length,
styleSheet.cssRules);
FBTrace.sysout("deleteRule: element.style", src);
}
else
{
FBTrace.sysout("deleteRule: element.style", src);
FBTrace.sysout("deleteRule: " + ruleIndex + " " + src.cssRules.length,
src.cssRules);
}
}

Expand Down

0 comments on commit 2b06d80

Please sign in to comment.