| Index: Source/bindings/v8/V8Binding.cpp
|
| diff --git a/Source/bindings/v8/V8Binding.cpp b/Source/bindings/v8/V8Binding.cpp
|
| index fa134cacc1a2aa5359332f0a3ac41401b3ab8ba5..6899a6daec141d663e46a94f2ba2f537eac54b06 100644
|
| --- a/Source/bindings/v8/V8Binding.cpp
|
| +++ b/Source/bindings/v8/V8Binding.cpp
|
| @@ -397,7 +397,7 @@ v8::Handle<v8::FunctionTemplate> createRawTemplate(v8::Isolate* isolate)
|
|
|
| PassRefPtr<DOMStringList> toDOMStringList(v8::Handle<v8::Value> value, v8::Isolate* isolate)
|
| {
|
| - v8::Local<v8::Value> v8Value(v8::Local<v8::Value>::New(value));
|
| + v8::Local<v8::Value> v8Value(v8::Local<v8::Value>::New(isolate, value));
|
|
|
| if (V8DOMStringList::HasInstance(v8Value, isolate, worldType(isolate))) {
|
| RefPtr<DOMStringList> ret = V8DOMStringList::toNative(v8::Handle<v8::Object>::Cast(v8Value));
|
|
|