RESOLVED WONTFIX 109521
[v8] V8HTMLCollection.cpp's WebCore::wrap(HTMLCollection* ...) missing cases in switch() for HTMLPropertiesCollection
https://bugs.webkit.org/show_bug.cgi?id=109521
Summary [v8] V8HTMLCollection.cpp's WebCore::wrap(HTMLCollection* ...) missing cases ...
Thomas Sepez
Reported 2013-02-11 16:54:56 PST
Discovered as part of the V8 bindings integrity project. The code in question reads: v8::Handle<v8::Object> wrap(HTMLCollection* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) { ASSERT(impl); switch (impl->type()) { case FormControls: return wrap(static_cast<HTMLFormControlsCollection*>(impl), creationContext, isolate); case SelectOptions: return wrap(static_cast<HTMLOptionsCollection*>(impl), creationContext, isolate); case DocAll: return wrap(static_cast<HTMLAllCollection*>(impl), creationContext, isolate); default: break; } return V8HTMLCollection::createWrapper(impl, creationContext, isolate); } But there is a Source/WebCore/html/HTMLPropertiesCollection.idl.
Attachments
Thomas Sepez
Comment 1 2013-04-25 13:50:14 PDT
Now tracked at https://code.google.com/p/chromium/issues/detail?id=235578. Nothing need happen in WebKit.
Note You need to log in before you can comment on or make changes to this bug.