| 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..818909522fa318256ce7297ec167b289e459b756 100644
|
| --- a/Source/bindings/tests/results/V8TestNode.cpp
|
| +++ b/Source/bindings/tests/results/V8TestNode.cpp
|
| @@ -90,6 +90,7 @@ static void hrefAttributeGetterCallback(v8::Local<v8::String>, const v8::Propert
|
|
|
| static void hrefAttributeSetter(v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<void>& info)
|
| {
|
| + ExceptionState exceptionState(ExceptionState::SetterContext, "href", "TestNode", info.Holder(), info.GetIsolate());
|
| TestNode* imp = V8TestNode::toNative(info.Holder());
|
| V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue);
|
| imp->setHref(cppValue);
|
| @@ -117,9 +118,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();
|
| }
|
|
|