[Webkit-unassigned] [Bug 56114] New: Web Inspector: when console.groupEnd calls twice

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Mar 10 09:54:32 PST 2011


https://bugs.webkit.org/show_bug.cgi?id=56114

           Summary: Web Inspector: when console.groupEnd calls twice
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Windows XP
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P1
         Component: Web Inspector
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: qfox at ya.ru
                CC: timothy at apple.com, rik at webkit.org, keishi at webkit.org,
                    pmuellr at yahoo.com, joepeck at webkit.org,
                    pfeldman at chromium.org, yurys at chromium.org,
                    bweinstein at apple.com, apavlov at chromium.org,
                    loislo at chromium.org


When I call this in opened console (or in plugin):
<code>
console.group('root group');

  // inner group
  console.group('subgroup');
    console.log('log in subgroup');
    console.warn('warn in subgroup');
  console.groupEnd('subgroup');

  // Probably not needed
  console.group('another subgroup');
    console.debug('debug in the second subgroup');
  console.groupEnd('another subgroup');

console.groupEnd('root group');

// bug here:
console.log('test log message after double groupEnd to root level'); // but root group doesn't closed
</code>

The last log-message not in a place it must be.

But it works if I call console.debug (or any other) with some text after each console.groupEnd.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list