| Index: Source/bindings/v8/V8Binding.cpp
|
| diff --git a/Source/bindings/v8/V8Binding.cpp b/Source/bindings/v8/V8Binding.cpp
|
| index 275e0d8d7fa6769958c9290f02f12f0de283f3dc..13d8c1f74fb4be5ede60d77d128f479c93abe727 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));
|
|
|