Index: Source/bindings/v8/custom/V8DocumentCustom.cpp |
diff --git a/Source/bindings/v8/custom/V8DocumentCustom.cpp b/Source/bindings/v8/custom/V8DocumentCustom.cpp |
index fcf60021ebac6970a3d35d7b4faaad660684f808..4248ff3b33ed9c5e1129041665b24f9e6e1dd35e 100644 |
--- a/Source/bindings/v8/custom/V8DocumentCustom.cpp |
+++ b/Source/bindings/v8/custom/V8DocumentCustom.cpp |
@@ -97,7 +97,7 @@ void V8Document::createEventMethodCustom(const v8::FunctionCallbackInfo<v8::Valu |
Document* impl = V8Document::toNative(info.Holder()); |
V8StringResource<> eventType; |
{ |
- TOSTRING_VOID_INTERNAL_NOTRYCATCH(eventType, info[0]); |
+ TOSTRING_VOID_INTERNAL(eventType, info[0]); |
} |
RefPtrWillBeRawPtr<Event> result = createEventModules(eventType, exceptionState); |
if (exceptionState.hadException()) { |