| Index: Source/bindings/tests/results/core/V8TestNode.cpp
|
| diff --git a/Source/bindings/tests/results/core/V8TestNode.cpp b/Source/bindings/tests/results/core/V8TestNode.cpp
|
| index 1f146a4b3b56a6c2cdc6cf23ea8e243f749b821e..37aae86883c6f8951b59bdb9dc800dd3e2536135 100644
|
| --- a/Source/bindings/tests/results/core/V8TestNode.cpp
|
| +++ b/Source/bindings/tests/results/core/V8TestNode.cpp
|
| @@ -148,7 +148,7 @@ static void hrefByteStringAttributeSetter(v8::Local<v8::Value> v8Value, const v8
|
| v8::Local<v8::Object> holder = info.Holder();
|
| ExceptionState exceptionState(ExceptionState::SetterContext, "hrefByteString", "TestNode", holder, info.GetIsolate());
|
| TestNode* impl = V8TestNode::toImpl(holder);
|
| - V8StringResource<> cppValue = toByteString(v8Value, exceptionState);
|
| + V8StringResource<> cppValue = toByteString(info.GetIsolate(), v8Value, exceptionState);
|
| if (exceptionState.throwIfNeeded())
|
| return;
|
| impl->setHrefByteString(cppValue);
|
|
|