Index: Source/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp |
diff --git a/Source/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp b/Source/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp |
index b8910b51610eaa5cb6c8c28751c0747adb3ca230..0c3b0198d981bb8cba6c1304f08d194bee2a00a4 100644 |
--- a/Source/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp |
+++ b/Source/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp |
@@ -123,11 +123,4 @@ void V8HTMLOptionsCollection::lengthAttrSetterCustom(v8::Local<v8::String> name, |
setDOMException(ec, info.GetIsolate()); |
} |
-v8::Handle<v8::Value> V8HTMLOptionsCollection::indexedPropertySetter(uint32_t index, v8::Local<v8::Value> value, const v8::AccessorInfo& info) |
-{ |
- HTMLOptionsCollection* collection = V8HTMLOptionsCollection::toNative(info.Holder()); |
- HTMLSelectElement* base = toHTMLSelectElement(collection->ownerNode()); |
- return toOptionsCollectionSetter(index, value, base, info.GetIsolate()); |
-} |
- |
} // namespace WebCore |