RESOLVED FIXED 123794
HTMLCollection should not be NodeList
https://bugs.webkit.org/show_bug.cgi?id=123794
Summary HTMLCollection should not be NodeList
Antti Koivisto
Reported 2013-11-05 01:56:08 PST
HTMLContainer and NodeList are unrelated types in DOM yet our HTMLContainer inherits NodeList for code sharing reasons. While some code does get shared the types are sufficiently different that this results in lots of unnecessary branches, complexity and general awkwardness. Code sharing can be better achieved by other means than inheritance.
Attachments
patch (81.41 KB, patch)
2013-11-05 02:12 PST, Antti Koivisto
kling: review+
eflews.bot: commit-queue-
Antti Koivisto
Comment 1 2013-11-05 02:12:02 PST
Antti Koivisto
Comment 2 2013-11-05 02:16:11 PST
and by HTMLContainer I mean HTMLCollection
Andreas Kling
Comment 3 2013-11-05 02:19:02 PST
Comment on attachment 216016 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=216016&action=review > Source/WebCore/dom/Document.cpp:502 > + for (unsigned i = 0; i < WTF_ARRAY_LENGTH(m_nodeListAndCollectionCounts); i++) ++i LOL > Source/WebCore/dom/Document.cpp:592 > + for (unsigned i = 0; i < WTF_ARRAY_LENGTH(m_nodeListAndCollectionCounts); i++) Ditto. > Source/WebCore/dom/Document.cpp:3361 > +void Document::registerNodeList(LiveNodeList* list) LiveNodeList& > Source/WebCore/dom/Document.cpp:3368 > +void Document::unregisterNodeList(LiveNodeList* list) LiveNodeList& > Source/WebCore/dom/Document.cpp:3377 > +void Document::registerCollection(HTMLCollection* list) HTMLCollection& Also 'list'? > Source/WebCore/dom/Document.cpp:3386 > +{ HTMLCollection& Also 'list'? > Source/WebCore/dom/Document.h:704 > + bool shouldInvalidateNodeListAndCollectionCaches(const QualifiedName* attrName = 0) const; nullptr > Source/WebCore/dom/LiveNodeList.cpp:43 > +inline bool isMatchingElement(const NodeListType*, Element*); So > Source/WebCore/dom/LiveNodeList.cpp:45 > +template <> inline bool isMatchingElement(const LiveNodeList* nodeList, Element* element) many > Source/WebCore/dom/LiveNodeList.cpp:50 > +template <> inline bool isMatchingElement(const HTMLTagNodeList* nodeList, Element* element) pointers > Source/WebCore/dom/LiveNodeList.cpp:55 > +template <> inline bool isMatchingElement(const ClassNodeList* nodeList, Element* element) everywhere :| > Source/WebCore/dom/LiveNodeList.cpp:67 > + return 0; nullptr
EFL EWS Bot
Comment 4 2013-11-05 02:25:44 PST
Ryosuke Niwa
Comment 5 2013-11-05 02:28:36 PST
Comment on attachment 216016 [details] patch We shouldn't do this at least until we move getElementsByTagName, etc… off of NodeList. That was the whole point in creating this mess in the first place. Sorry for leaving the mess but let me finish the transition first.
Ryosuke Niwa
Comment 6 2013-11-05 02:32:35 PST
Ryosuke Niwa
Comment 7 2013-11-05 04:09:59 PST
Antti and I had some discussions on IRC. Antti intends to land this patch and then re-share code for the caches and I'll implement the transition once he finished that work.
Andreas Kling
Comment 8 2013-11-05 04:41:51 PST
Comment on attachment 216016 [details] patch Sure go ahead.
Csaba Osztrogonác
Comment 9 2013-11-05 07:00:53 PST
http://trac.webkit.org/changeset/158663 broke the build everywhere ... :-/ Are you working on the fix or do you need any help?
Antti Koivisto
Comment 10 2013-11-05 07:21:17 PST
Csaba Osztrogonác
Comment 11 2013-11-05 07:22:55 PST
(In reply to comment #10) > was fixed in https://trac.webkit.org/r158665 No, it wasn't. Windows, EFL and GTK build is still broken.
Csaba Osztrogonác
Comment 12 2013-11-05 07:24:08 PST
Note You need to log in before you can comment on or make changes to this bug.