RESOLVED FIXED 198276
Web Inspector: REGRESSION(r239175): Source Maps: original source not shown when in nested folder
https://bugs.webkit.org/show_bug.cgi?id=198276
Summary Web Inspector: REGRESSION(r239175): Source Maps: original source not shown wh...
Gibran Malheiros
Reported 2019-05-27 08:36:47 PDT
Created attachment 370693 [details] Screen capture demonstration Overview: Both debugger and resources tabs don't show the original source file if its path contains more than one folder. Steps to Reproduce: 1. Go to https://github.com/ 2. Open web inspector 3. Go to the debugger tab 4. Expand the source folder tree to locate "apps/assets/modules/github" Actual Results: The tree item for "apps/assets/modules/github" has no children, empty. Expected Results: The tree item for "apps/assets/modules/github" should contain its children. Build Date & Hardware: Safari 12.1.1 macOS 10.14.5 Additional Information: Does not happen in other browsers, I've checked with Chrome 74.0.3729.169 and Firefox 67.0 A bare minimum project is available to reproduce the issue at https://github.com/gibatronic/webpack-Safari-nested-folder-source-map-issue
Attachments
Screen capture demonstration (244.90 KB, image/gif)
2019-05-27 08:36 PDT, Gibran Malheiros
no flags
Patch (7.22 KB, patch)
2020-05-01 16:05 PDT, Devin Rousso
no flags
Patch (5.12 KB, patch)
2020-05-04 12:00 PDT, Devin Rousso
no flags
Patch (5.83 KB, patch)
2020-05-04 16:33 PDT, Devin Rousso
no flags
Gibran Malheiros
Comment 1 2019-05-29 04:58:38 PDT
I was also able to reproduce this issue in Safari Technology Preview: > Release 82 (Safari 12.2, WebKit 14608.1.23.1)
Christopher Grande
Comment 2 2020-02-20 16:35:51 PST
Seeing this still in Release 101 (Safari 13.2, WebKit 15610.1.3)
Devin Rousso
Comment 3 2020-05-01 16:05:25 PDT
Devin Rousso
Comment 4 2020-05-04 11:50:49 PDT
Comment on attachment 398256 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=398256&action=review > Source/WebInspectorUI/ChangeLog:19 > + Drive-by: don't attempt to combine folder chains, matching the behavior of "Group by Path". After thinking about this a bit more, I think a better approach would be to combine folder chains when "Group by Type" (preserves the existing behavior), and to not do that when "Group by Path" as that makes the whole tree match look/feel.
Devin Rousso
Comment 5 2020-05-04 12:00:13 PDT
Joseph Pecoraro
Comment 6 2020-05-04 14:04:44 PDT
Comment on attachment 398396 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=398396&action=review > Source/WebInspectorUI/UserInterface/Views/TreeOutline.js:374 > + // Copy the array so that it's not modified (e.g. if a caller saved it to iterate later). > + this.children = this.children.slice(); This seems kind of expensive and it sounds like the caller is doing something that might be wrong by assuming the array is not modified. Should the caller be making the duplicate?
Devin Rousso
Comment 7 2020-05-04 15:29:25 PDT
Comment on attachment 398396 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=398396&action=review >> Source/WebInspectorUI/UserInterface/Views/TreeOutline.js:374 >> + this.children = this.children.slice(); > > This seems kind of expensive and it sounds like the caller is doing something that might be wrong by assuming the array is not modified. Should the caller be making the duplicate? It's true that this is expensive, but this mimics the old behavior. I tried looking around, but given how common `removeChildren` is, I'm not sure if there are other things that are relying on the old functionality before r239175. It might just be this case. I did this to be safe, but given that we haven't seen any other cases of issues like this, I'm inclined to remove it. I'll investigate a bit more to see if we can remove this or at the very least go back to something like the old functionality.
Devin Rousso
Comment 8 2020-05-04 16:33:01 PDT
Joseph Pecoraro
Comment 9 2020-05-05 14:48:04 PDT
Comment on attachment 398433 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=398433&action=review rs=me > Source/WebInspectorUI/UserInterface/Views/TreeOutline.js:392 > + this.children = []; I like this much better. I suppose it is possible that in response to an element being removed someone could add a child.. but `removeChildren` is a remove of all children, so you should be left with nothing at the end.
Devin Rousso
Comment 10 2020-05-05 14:56:03 PDT
Comment on attachment 398433 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=398433&action=review >> Source/WebInspectorUI/UserInterface/Views/TreeOutline.js:392 >> + this.children = []; > > I like this much better. I suppose it is possible that in response to an element being removed someone could add a child.. but `removeChildren` is a remove of all children, so you should be left with nothing at the end. Yes, that's true. FWIW, that issue would also affect `WI.DataGrid`, so i kinda doubt it :P
EWS
Comment 11 2020-05-05 15:09:39 PDT
Committed r261200: <https://trac.webkit.org/changeset/261200> All reviewed patches have been landed. Closing bug and clearing flags on attachment 398433 [details].
Radar WebKit Bug Importer
Comment 12 2020-05-05 15:10:14 PDT
Gibran Malheiros
Comment 13 2020-05-08 00:43:29 PDT
Thanks to everyone involved. This will be much appreciated. Is it possible to get notified when this patch lands in a nightly build?
Blaze Burg
Comment 14 2020-05-11 11:31:50 PDT
(In reply to Gibran Malheiros from comment #13) > Thanks to everyone involved. This will be much appreciated. > Is it possible to get notified when this patch lands in a nightly build? We don't have nightly builds. It should make it into Safari Technology Preview 107.
Note You need to log in before you can comment on or make changes to this bug.