Index: Source/bindings/tests/results/V8TestNode.cpp |
diff --git a/Source/bindings/tests/results/V8TestNode.cpp b/Source/bindings/tests/results/V8TestNode.cpp |
index 17fcb34be65546bafc2e1261ea189745531a2726..5453a08d2c562cd846c5ba6c5324b92973b0731e 100644 |
--- a/Source/bindings/tests/results/V8TestNode.cpp |
+++ b/Source/bindings/tests/results/V8TestNode.cpp |
@@ -117,9 +117,9 @@ static void hrefThrowsAttributeGetterCallback(v8::Local<v8::String>, const v8::P |
static void hrefThrowsAttributeSetter(v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<void>& info) |
{ |
+ ExceptionState exceptionState(ExceptionState::SetterContext, "hrefThrows", "TestNode", info.Holder(), info.GetIsolate()); |
TestNode* imp = V8TestNode::toNative(info.Holder()); |
V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue); |
- ExceptionState exceptionState(info.Holder(), info.GetIsolate()); |
imp->setHrefThrows(cppValue, exceptionState); |
exceptionState.throwIfNeeded(); |
} |