WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
Bug 188960
Web Inspector: when scrolling a virtualized TreeOutline, only update the DOM periodically
https://bugs.webkit.org/show_bug.cgi?id=188960
Summary
Web Inspector: when scrolling a virtualized TreeOutline, only update the DOM ...
Devin Rousso
Reported
2018-08-26 20:40:38 PDT
Currently, we add/remove all TreeElement from the DOM every time the TreeOutline is scrolled. This is wasteful, especially if the user is just scrolling a few pixels and the TreeOutline has a lot of children. We should be smarter about when we want to recalculate the needed DOM elements when scrolling.
Attachments
Patch
(4.23 KB, patch)
2018-08-26 20:43 PDT
,
Devin Rousso
no flags
Details
Formatted Diff
Diff
Patch
(4.68 KB, patch)
2018-08-27 13:49 PDT
,
Devin Rousso
no flags
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Devin Rousso
Comment 1
2018-08-26 20:43:27 PDT
Created
attachment 348116
[details]
Patch
Blaze Burg
Comment 2
2018-08-27 13:16:08 PDT
Comment on
attachment 348116
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=348116&action=review
r=me
> Source/WebInspectorUI/ChangeLog:8 > + * UserInterface/Views/TreeOutline.js:
Needs explanation.
> Source/WebInspectorUI/UserInterface/Views/TreeOutline.js:58 > + this._vritualizedPreviousFirstItem = NaN;
Typo. Also I don't like this name, is there a way to better convey that this is the last point from which we selected rows and over-rendered them? For all intents, this is the "current" virtualized first item until updateVirtualizedElements() is called again, after which we don't care about the previous value.
> Source/WebInspectorUI/UserInterface/Views/TreeOutline.js:713 > + shouldScroll = (index < firstItem + extraRows) || (index > lastItem - extraRows);
Okay, so this means we are over-rendering by 2*extraRows, right? Above and below? That's what I would expect this code to do, but you haven't written a changelog so I could be reading the code wrong. I don't remember who wrote this code in the first place. Have you looked to see how quickly we can render the total number of rows? It might need to decrease in order to fit the frame budget. In any case, this improvement should be much much faster than the previous which seemed to not do any over-rendering at all.
Radar WebKit Bug Importer
Comment 3
2018-08-27 13:17:12 PDT
<
rdar://problem/43766257
>
Devin Rousso
Comment 4
2018-08-27 13:31:29 PDT
Comment on
attachment 348116
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=348116&action=review
>> Source/WebInspectorUI/UserInterface/Views/TreeOutline.js:713 >> + shouldScroll = (index < firstItem + extraRows) || (index > lastItem - extraRows); > > Okay, so this means we are over-rendering by 2*extraRows, right? Above and below? That's what I would expect this code to do, but you haven't written a changelog so I could be reading the code wrong. > > I don't remember who wrote this code in the first place. Have you looked to see how quickly we can render the total number of rows? It might need to decrease in order to fit the frame budget. > > In any case, this improvement should be much much faster than the previous which seemed to not do any over-rendering at all.
I actually was the one who wrote it 😅. Your expectation is correct. We render `extraRows` on either "side" (above and below) in order to give us a bit of a buffer with regards to scrolling. There hasn't been any issues as far as the frame budget in the past, and we used to regenerate the entire `WI.TreeOutline` DOM on every scroll event, so this should be MUCH better.
Devin Rousso
Comment 5
2018-08-27 13:49:56 PDT
Created
attachment 348193
[details]
Patch
WebKit Commit Bot
Comment 6
2018-08-27 14:28:07 PDT
Comment on
attachment 348193
[details]
Patch Clearing flags on attachment: 348193 Committed
r235401
: <
https://trac.webkit.org/changeset/235401
>
WebKit Commit Bot
Comment 7
2018-08-27 14:28:08 PDT
All reviewed patches have been landed. Closing bug.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug