Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp |
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp |
index bd96c6ab29052261872143b7bac176294a1e0465..05b1177f3b53b9c3071753035f7070d9c88ac60b 100644 |
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp |
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp |
@@ -358,6 +358,11 @@ static void hasMethod(const v8::FunctionCallbackInfo<v8::Value>& info) |
TestInterfaceEmpty* value; |
{ |
value = V8TestInterfaceEmpty::toImplWithTypeCheck(info.GetIsolate(), info[0]); |
+ if (!value) { |
+ exceptionState.throwTypeError("parameter 1 is not of type 'TestInterfaceEmpty'."); |
+ exceptionState.throwIfNeeded(); |
+ return; |
+ } |
} |
ScriptState* scriptState = ScriptState::current(info.GetIsolate()); |
bool result = impl->hasForBinding(scriptState, value, exceptionState); |