| Index: Source/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp
|
| diff --git a/Source/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp b/Source/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp
|
| index 2f73bff9ec80ee6c7e245880b4b5ee71cfcd1a65..22658c3dd0577b4b4ce1b958bbc50d760b656d47 100644
|
| --- a/Source/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp
|
| +++ b/Source/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp
|
| @@ -65,8 +65,9 @@ static void getNamedItems(HTMLOptionsCollection* collection, const AtomicString&
|
|
|
| void V8HTMLOptionsCollection::namedItemMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& args)
|
| {
|
| + V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, name, args[0]);
|
| HTMLOptionsCollection* imp = V8HTMLOptionsCollection::toNative(args.Holder());
|
| - getNamedItems(imp, toWebCoreString(args[0]), args);
|
| + getNamedItems(imp, name, args);
|
| }
|
|
|
| void V8HTMLOptionsCollection::addMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& args)
|
|
|