| Index: Source/bindings/v8/custom/V8DocumentCustom.cpp
|
| diff --git a/Source/bindings/v8/custom/V8DocumentCustom.cpp b/Source/bindings/v8/custom/V8DocumentCustom.cpp
|
| index 53708a14635558296b49b8360aeebd5fca080460..0b5f5976df92ae7e4ad91112e4e94733097e6ede 100644
|
| --- a/Source/bindings/v8/custom/V8DocumentCustom.cpp
|
| +++ b/Source/bindings/v8/custom/V8DocumentCustom.cpp
|
| @@ -60,7 +60,7 @@ namespace WebCore {
|
| void V8Document::evaluateMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| {
|
| RefPtr<Document> document = V8Document::toNative(info.Holder());
|
| - ExceptionState exceptionState(info.GetIsolate());
|
| + ExceptionState exceptionState(info.Holder(), info.GetIsolate());
|
| V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, expression, info[0]);
|
| RefPtr<Node> contextNode;
|
| if (V8Node::hasInstance(info[1], info.GetIsolate(), worldType(info.GetIsolate())))
|
|
|