RESOLVED FIXED 126368
Remove public attachRenderTree
https://bugs.webkit.org/show_bug.cgi?id=126368
Summary Remove public attachRenderTree
Antti Koivisto
Reported 2014-01-01 17:51:38 PST
Remove the remaining explicit render tree construction.
Attachments
patch (10.16 KB, patch)
2014-01-01 17:57 PST, Antti Koivisto
kling: review+
eflews.bot: commit-queue-
another (10.16 KB, patch)
2014-01-01 23:52 PST, Antti Koivisto
no flags
Antti Koivisto
Comment 1 2014-01-01 17:57:27 PST
Andreas Kling
Comment 2 2014-01-01 18:03:25 PST
Comment on attachment 220198 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=220198&action=review r=me > Source/WebCore/html/shadow/InsertionPoint.h:100 > +inline InsertionPoint& toInsertionPoint(Node& node) > +{ > + ASSERT_WITH_SECURITY_IMPLICATION(node.isInsertionPoint()); > + return static_cast<InsertionPoint&>(node); > +} > + > +inline const InsertionPoint& toInsertionPoint(const Node& node) > +{ > + ASSERT_WITH_SECURITY_IMPLICATION(node.isInsertionPoint()); > + return static_cast<const InsertionPoint&>(node); > +} Could we replace this gunk with NODE_TYPE_CASTS(InsertionPoint) instead?
EFL EWS Bot
Comment 3 2014-01-01 19:45:29 PST
Antti Koivisto
Comment 4 2014-01-01 23:52:53 PST
Antti Koivisto
Comment 5 2014-01-02 01:46:43 PST
Note You need to log in before you can comment on or make changes to this bug.