WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
136975
Add the baseline implementation of :nth-child(An+B of selector-list)
https://bugs.webkit.org/show_bug.cgi?id=136975
Summary
Add the baseline implementation of :nth-child(An+B of selector-list)
Benjamin Poulain
Reported
2014-09-19 22:25:00 PDT
Add the baseline implementation of :nth-child(An+B of selector-list)
Attachments
Patch
(181.10 KB, patch)
2014-09-19 22:28 PDT
,
Benjamin Poulain
darin
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Benjamin Poulain
Comment 1
2014-09-19 22:28:38 PDT
Created
attachment 238407
[details]
Patch
Darin Adler
Comment 2
2014-09-21 17:21:53 PDT
Comment on
attachment 238407
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=238407&action=review
> Source/WebCore/css/SelectorChecker.cpp:676 > + for (const CSSSelector* subSelector = selectorList->first(); subSelector; subSelector = CSSSelectorList::next(subSelector)) {
The word “subselector” is a single word so doesn’t need a capital letter in the middle.
> Source/WebCore/css/SelectorChecker.cpp:677 > + CheckingContextWithStatus subContext(context);
Same thing for “subcontext”. Even a coined word like this isn’t two words.
> Source/WebCore/css/SelectorChecker.cpp:684 > + PseudoId ignoreDynamicPseudo = NOPSEUDO; > + > + if (matchRecursively(subContext, ignoreDynamicPseudo) == SelectorMatches) {
I think you should remove the blank line here. The paragraphing is a little confusing with that blank line.
> Source/WebCore/css/SelectorChecker.cpp:704 > + RenderStyle* childStyle = context.elementStyle ? context.elementStyle : element->renderStyle(); > + element->setChildIndex(count); > + if (childStyle) > + childStyle->setUnique();
Existing code, but: If we moved the setChildIndex call up one line, we could define childStyle inside the if statement; just like you did in the new code. Which in turn makes it clear that most of this if statement can be moved out of the if/else statement and doesn’t need to be repeated twice. The setChildIndex part is the only part that needs to stay here.
Benjamin Poulain
Comment 3
2014-09-22 15:10:05 PDT
Committed
r173853
: <
http://trac.webkit.org/changeset/173853
>
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