RESOLVED FIXED Bug 119676
Move some Document recalcStyle code to StyleResolveTree
https://bugs.webkit.org/show_bug.cgi?id=119676
Summary Move some Document recalcStyle code to StyleResolveTree
Antti Koivisto
Reported 2013-08-12 03:10:32 PDT
This is the usual starting point for tree resolve.
Attachments
patch (4.53 KB, patch)
2013-08-12 03:14 PDT, Antti Koivisto
kling: review+
Antti Koivisto
Comment 1 2013-08-12 03:14:40 PDT
Andreas Kling
Comment 2 2013-08-12 03:19:30 PDT
Comment on attachment 208524 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=208524&action=review r=me > Source/WebCore/style/StyleResolveTree.cpp:299 > + for (Node* child = document->firstChild(); child; child = child->nextSibling()) { > + if (!child->isElementNode()) > + continue; > + Element* elementChild = toElement(child); We should make ElementTraversal support this case.
Antti Koivisto
Comment 3 2013-08-12 03:24:38 PDT
Note You need to log in before you can comment on or make changes to this bug.