RESOLVED FIXED 138650
Implement the matching for :nth-last-child(An+B of selector-list)
https://bugs.webkit.org/show_bug.cgi?id=138650
Summary Implement the matching for :nth-last-child(An+B of selector-list)
Benjamin Poulain
Reported 2014-11-11 19:45:36 PST
Implement the matching for :nth-last-child(An+B of selector-list)
Attachments
Patch (62.10 KB, patch)
2014-11-11 19:55 PST, Benjamin Poulain
kling: review+
Benjamin Poulain
Comment 1 2014-11-11 19:55:53 PST
Andreas Kling
Comment 2 2014-11-13 12:39:44 PST
Comment on attachment 241411 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=241411&action=review r=me > Source/WebCore/dom/Node.cpp:678 > + if (is<Element>(ancestor) && downcast<Element>(ancestor)->childrenAffectedByPropertyBasedBackwardPositionalRules()) { is<Element>(ancestor) will do an unnecessary null check here; you probably want is<Element>(*ancestor)
Benjamin Poulain
Comment 3 2014-11-13 13:00:29 PST
Chris Dumez
Comment 4 2014-11-13 13:07:10 PST
Comment on attachment 241411 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=241411&action=review >> Source/WebCore/dom/Node.cpp:678 >> + if (is<Element>(ancestor) && downcast<Element>(ancestor)->childrenAffectedByPropertyBasedBackwardPositionalRules()) { > > is<Element>(ancestor) will do an unnecessary null check here; you probably want is<Element>(*ancestor) yes, and we usually do downcast<Element>(*ancestor).xxx() as well.
Note You need to log in before you can comment on or make changes to this bug.