RESOLVED FIXED 78827
Web Inspector: split innerUpdate into rebuildUpdate and refreshUpdate, make computed styles load lazily.
https://bugs.webkit.org/show_bug.cgi?id=78827
Summary Web Inspector: split innerUpdate into rebuildUpdate and refreshUpdate, make c...
Pavel Feldman
Reported 2012-02-16 09:56:45 PST
Patch to follow.
Attachments
Patch (17.81 KB, patch)
2012-02-16 09:58 PST, Pavel Feldman
vsevik: review+
Pavel Feldman
Comment 1 2012-02-16 09:58:28 PST
Alexander Pavlov (apavlov)
Comment 2 2012-02-17 01:54:23 PST
Comment on attachment 127399 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=127399&action=review > Source/WebCore/inspector/front-end/StylesSidebarPane.js:333 > + _validateNode: function(userCallback) I'm not sure this is a good method: it looks like "return current node but do something and invoke userCallback ONLY if the node is null". This conditional callback invocation is not consistent with other code using callbacks: all paths invoke at least one of the provided callbacks. On a similar note, returning this.node here is not necessary, since you can assign this.node at the call site instead.
Pavel Feldman
Comment 3 2012-02-17 02:10:50 PST
(In reply to comment #2) > (From update of attachment 127399 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=127399&action=review > > > Source/WebCore/inspector/front-end/StylesSidebarPane.js:333 > > + _validateNode: function(userCallback) > > I'm not sure this is a good method: it looks like "return current node but do something and invoke userCallback ONLY if the node is null". This conditional callback invocation is not consistent with other code using callbacks: all paths invoke at least one of the provided callbacks. We are using this exact pattern as asserNode and assertStyleSheet on the backend. validateNode is used to guard methods that require valid node and take care of calling the userCallback. > > On a similar note, returning this.node here is not necessary, since you can assign this.node at the call site instead. See above, I need to return validated node or null for the guard to work.
Pavel Feldman
Comment 4 2012-02-17 03:41:04 PST
Note You need to log in before you can comment on or make changes to this bug.