RESOLVED FIXED129689
Add a Document::updateStyleIfNeededForNode(Node&).
https://bugs.webkit.org/show_bug.cgi?id=129689
Summary Add a Document::updateStyleIfNeededForNode(Node&).
Andreas Kling
Reported 2014-03-04 11:29:16 PST
Add a Document::updateStyleIfNeededForNode(Node&) so we can avoid doing full style updates when we're only interested in a single node (whose style isn't dirty.)
Attachments
Patch (4.97 KB, patch)
2014-03-04 11:29 PST, Andreas Kling
koivisto: review+
Andreas Kling
Comment 1 2014-03-04 11:29:55 PST
Antti Koivisto
Comment 2 2014-03-04 11:35:55 PST
Comment on attachment 225795 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=225795&action=review > Source/WebCore/dom/Document.cpp:6055 > +static inline bool nodeOrItsAncestorNeedsStyleRecalc(const Node& node) > +{ > + if (node.document().hasPendingForcedStyleRecalc()) > + return true; Please pass in the Document, the caller knows (is!) it. > Source/WebCore/dom/Document.cpp:6063 > +bool Document::updateStyleIfNeededForNode(const Node& node) It would be better if this took Element. Generic Nodes don't have style. However since some of the client code is Node-based perhaps it is better to refactor this separately.
Andreas Kling
Comment 3 2014-03-04 14:17:31 PST
Note You need to log in before you can comment on or make changes to this bug.