| Index: Source/bindings/tests/results/V8TestSerializedScriptValueInterface.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestSerializedScriptValueInterface.cpp b/Source/bindings/tests/results/V8TestSerializedScriptValueInterface.cpp
|
| index 60e0e59dcfe1d2f99d8bdbfe1f95eaa8b451d213..d1d3fcc854d27abbf17cdfad98cc93641924d478 100644
|
| --- a/Source/bindings/tests/results/V8TestSerializedScriptValueInterface.cpp
|
| +++ b/Source/bindings/tests/results/V8TestSerializedScriptValueInterface.cpp
|
| @@ -175,7 +175,7 @@ static void dirtyScriptValueAttributeGetterCallback(v8::Local<v8::String> name,
|
| static void dirtyScriptValueAttributeSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info)
|
| {
|
| TestSerializedScriptValueInterface* imp = V8TestSerializedScriptValueInterface::toNative(info.Holder());
|
| - V8TRYCATCH_VOID(ScriptValue, v, ScriptValue(value));
|
| + V8TRYCATCH_VOID(ScriptValue, v, ScriptValue(value, info.GetIsolate()));
|
| imp->setDirtyScriptValue(v);
|
| info.Holder()->DeleteHiddenValue(v8::String::NewSymbol("dirtyScriptValue")); // Invalidate the cached value.
|
| return;
|
|
|