RESOLVED FIXED 56114
Web Inspector: when console.groupEnd calls twice
https://bugs.webkit.org/show_bug.cgi?id=56114
Summary Web Inspector: when console.groupEnd calls twice
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.