WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
123895
Move array position caching out from HTMLCollection
https://bugs.webkit.org/show_bug.cgi?id=123895
Summary
Move array position caching out from HTMLCollection
Antti Koivisto
Reported
2013-11-06 08:37:53 PST
This caching complicated the logic but is used by a single subclass (HTMLFormControlsCollection) only. The subclass can do the caching itself.
Attachments
patch
(21.39 KB, patch)
2013-11-06 08:54 PST
,
Antti Koivisto
darin
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Antti Koivisto
Comment 1
2013-11-06 08:54:03 PST
Created
attachment 216180
[details]
patch
Darin Adler
Comment 2
2013-11-06 09:33:40 PST
Comment on
attachment 216180
[details]
patch View in context:
https://bugs.webkit.org/attachment.cgi?id=216180&action=review
> Source/WebCore/html/HTMLCollection.cpp:134 > +HTMLCollection::HTMLCollection(ContainerNode& ownerNode, CollectionType type, ElementTraversalType traversalType)
I think that the enum is great for the argument.
> Source/WebCore/html/HTMLCollection.cpp:144 > + , m_elementTraversalType(traversalType)
But for the local, I might suggest we use a boolean named m_requiresCustomForwardTraversal or something like that. In other words, I liked the readability of the old pattern where the data member was a boolean.
> Source/WebCore/html/HTMLCollection.h:76 > + Element* traverseFirstElement(ContainerNode* root) const;
Nothing new, but I am not a big fan of the name “traverse first element”. The meaning of traverse here is unclear.
> Source/WebCore/html/HTMLCollection.h:143 > + virtual Element* virtualElementAfter(Element*) const { ASSERT_NOT_REACHED(); return nullptr; }
So we can’t use pure virtual because we only need this for classes that are CustomForwardOnlyTraversal. Ugly.
> Source/WebCore/html/HTMLFormControlsCollection.cpp:77 > + unsigned i = 0; > + for (; i < elementVector.size(); ++i) { > + auto& associatedElement = *elementVector[i]; > + if (associatedElement.isEnumeratable() && &associatedElement.asHTMLElement() == &element) > + break; > + } > + return i;
I would put the return inside the loop, and use a normal for loop without an “outside the loop” i variable. I think that would also make it slightly clearer what the function returns when nothing is found. But maybe this is more elegant.
Antti Koivisto
Comment 3
2013-11-06 10:17:22 PST
http://trac.webkit.org/changeset/158758
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