Changeset 103855 in webkit for trunk/Source/WebCore/html/HTMLOptionsCollection.cpp
- Timestamp:
- Dec 30, 2011, 6:43:33 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/html/HTMLOptionsCollection.cpp
r97533 r103855 28 28 namespace WebCore { 29 29 30 HTMLOptionsCollection::HTMLOptionsCollection( PassRefPtr<HTMLSelectElement>select)31 : HTMLCollection(select .get(), SelectOptions, select->collectionInfo())30 HTMLOptionsCollection::HTMLOptionsCollection(HTMLSelectElement* select) 31 : HTMLCollection(select, SelectOptions, 0, /* retainBaseNode */ false) 32 32 { 33 33 } 34 34 35 PassRefPtr<HTMLOptionsCollection> HTMLOptionsCollection::create( PassRefPtr<HTMLSelectElement>select)35 PassRefPtr<HTMLOptionsCollection> HTMLOptionsCollection::create(HTMLSelectElement* select) 36 36 { 37 37 return adoptRef(new HTMLOptionsCollection(select)); … … 88 88 } 89 89 90 void HTMLOptionsCollection::invalidateCache() 91 { 92 if (info()) 93 info()->reset(); 94 } 95 90 96 } //namespace
Note:
See TracChangeset
for help on using the changeset viewer.