RESOLVED FIXED 120204
Tighten before/after pseudo element accessors
https://bugs.webkit.org/show_bug.cgi?id=120204
Summary Tighten before/after pseudo element accessors
Antti Koivisto
Reported 2013-08-23 04:19:57 PDT
We have generic looking Element::pseudoElement(PseudoID) which only returns before/after pseudo elements.
Attachments
patch (24.10 KB, patch)
2013-08-23 04:33 PDT, Antti Koivisto
gtk-ews: commit-queue-
another (24.39 KB, patch)
2013-08-24 00:14 PDT, Antti Koivisto
kling: review+
gtk-ews: commit-queue-
Antti Koivisto
Comment 1 2013-08-23 04:33:13 PDT
kov's GTK+ EWS bot
Comment 2 2013-08-23 05:34:33 PDT
Antti Koivisto
Comment 3 2013-08-24 00:14:10 PDT
kov's GTK+ EWS bot
Comment 4 2013-08-24 01:27:48 PDT
kov's GTK+ EWS bot
Comment 5 2013-08-24 02:46:59 PDT
Andreas Kling
Comment 6 2013-08-24 03:51:28 PDT
Comment on attachment 209534 [details] another View in context: https://bugs.webkit.org/attachment.cgi?id=209534&action=review r=me > Source/WebCore/dom/Element.cpp:2069 > + if (pseudoElementSpecifier != BEFORE && pseudoElementSpecifier != AFTER) > + return 0; > + return pseudoElementSpecifier == BEFORE ? host->beforePseudoElement() : host->afterPseudoElement(); This might look better as a switch. > Source/WebCore/dom/Element.cpp:2310 > +bool Element::updateExistingPseudoElement(PseudoElement* existing, Style::Change change) existing -> existingPseudoElement? > Source/WebCore/dom/Element.cpp:2341 > + if (PseudoElement* existing = beforePseudoElement()) { existing -> existingPseudoElement? > Source/WebCore/dom/Element.cpp:2352 > + if (PseudoElement* existing = afterPseudoElement()) { existing -> existingPseudoElement? > Source/WebCore/dom/Element.cpp:2396 > + if (!hasRareData()) > + return; This could be an assertion instead, if we moved the two clearFooPseudoElement() calls in clearStyleDerived... after the hasRareData check. > Source/WebCore/dom/Element.cpp:2404 > + if (!hasRareData()) > + return; Ditto.
Antti Koivisto
Comment 7 2013-08-24 04:15:11 PDT
Note You need to log in before you can comment on or make changes to this bug.