WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
156852
Element::idForStyleResolution() is a foot-gun
https://bugs.webkit.org/show_bug.cgi?id=156852
Summary
Element::idForStyleResolution() is a foot-gun
Chris Dumez
Reported
2016-04-21 09:15:08 PDT
Element::idForStyleResolution() is a foot-gun. It requires the caller to check Element::hasID() first or it may end up crashing when dereferencing elementData(). See
Bug 156806
.
Attachments
Patch
(7.77 KB, patch)
2016-04-21 13:48 PDT
,
Chris Dumez
no flags
Details
Formatted Diff
Diff
Patch
(9.21 KB, patch)
2016-04-21 15:36 PDT
,
Chris Dumez
no flags
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Chris Dumez
Comment 1
2016-04-21 13:48:47 PDT
Created
attachment 276953
[details]
Patch
Darin Adler
Comment 2
2016-04-21 13:52:58 PDT
Comment on
attachment 276953
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=276953&action=review
> Source/WebCore/css/ElementRuleCollector.cpp:158 > + collectMatchingRulesForList(matchRequest.ruleSet->idRules(id.impl()), matchRequest, ruleRange);
Seems that idRules should take a reference not a pointer, since we are checking for null before calling it..
> Source/WebCore/css/SelectorChecker.cpp:658 > + if (selector.match() == CSSSelector::Id) { > + auto& id = element.idForStyleResolution(); > + return !id.isNull() && id == selector.value(); > + }
Do we really need the isNull check here? Can selector.value() be null? I suggest proving it’s not needed and having the code be more streamlined without the isNull check.
Chris Dumez
Comment 3
2016-04-21 15:36:49 PDT
Created
attachment 276971
[details]
Patch
WebKit Commit Bot
Comment 4
2016-04-21 16:28:29 PDT
Comment on
attachment 276971
[details]
Patch Clearing flags on attachment: 276971 Committed
r199844
: <
http://trac.webkit.org/changeset/199844
>
WebKit Commit Bot
Comment 5
2016-04-21 16:28:36 PDT
All reviewed patches have been landed. Closing bug.
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