WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
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+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Benjamin Poulain
Comment 1
2014-11-11 19:55:53 PST
Created
attachment 241411
[details]
Patch
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
Committed
r176084
: <
http://trac.webkit.org/changeset/176084
>
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.
Top of Page
Format For Printing
XML
Clone This Bug