Bug 56114

Summary: Web Inspector: when console.groupEnd calls twice
Product: WebKit Reporter: Alex Yaroshevich <qfox>
Component: Web Inspector (Deprecated)Assignee: Yury Semikhatsky <yurys>
Status: RESOLVED FIXED    
Severity: Normal CC: apavlov, bweinstein, joepeck, keishi, loislo, pfeldman, pmuellr, rik, timothy, yurys
Priority: P1    
Version: 528+ (Nightly build)   
Hardware: PC   
OS: Windows XP   
Attachments:
Description Flags
Patch pfeldman: review+

Alex Yaroshevich
Reported 2011-03-10 09:54:31 PST
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.
Attachments
Patch (4.95 KB, patch)
2011-03-15 05:52 PDT, Yury Semikhatsky
pfeldman: review+
Yury Semikhatsky
Comment 1 2011-03-15 05:52:42 PDT
Yury Semikhatsky
Comment 2 2011-03-15 06:09:39 PDT
Note You need to log in before you can comment on or make changes to this bug.