RESOLVED FIXED 59108
Web Inspector: group content scripts in the scripts panel drop down.
https://bugs.webkit.org/show_bug.cgi?id=59108
Summary Web Inspector: group content scripts in the scripts panel drop down.
Pavel Feldman
Reported 2011-04-21 09:35:03 PDT
Patch to follow.
Attachments
Patch (3.66 KB, patch)
2011-04-21 09:40 PDT, Pavel Feldman
yurys: review+
Pavel Feldman
Comment 1 2011-04-21 09:40:02 PDT
Yury Semikhatsky
Comment 2 2011-04-22 05:37:39 PDT
Comment on attachment 90547 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=90547&action=review > Source/WebCore/inspector/front-end/ScriptsPanel.js:292 > + if (a.isContentScript && !b.isContentScript) you could use difference between two boolean values instead of these two statements: var d = !!a.isContentScript - !!b.isContentScript; if (!d) return d;
Pavel Feldman
Comment 3 2011-04-22 06:18:29 PDT
Note You need to log in before you can comment on or make changes to this bug.