| Index: Source/bindings/scripts/CodeGeneratorV8.pm
|
| diff --git a/Source/bindings/scripts/CodeGeneratorV8.pm b/Source/bindings/scripts/CodeGeneratorV8.pm
|
| index d19c16482c9e765b65f9a035dcc5fac4924d8b8d..6744ab9c75183670d87f41dcbff0ce767b4e80f8 100644
|
| --- a/Source/bindings/scripts/CodeGeneratorV8.pm
|
| +++ b/Source/bindings/scripts/CodeGeneratorV8.pm
|
| @@ -4881,7 +4881,7 @@ sub GenerateFunctionCallString
|
| } elsif (IsSVGTypeNeedingTearOff($parameter->type) and not $interfaceName =~ /List$/) {
|
| push @arguments, "$paramName->propertyReference()";
|
| $code .= $indent . "if (!$paramName) {\n";
|
| - $code .= $indent . " setDOMException(WebCore::TYPE_MISMATCH_ERR, args.GetIsolate());\n";
|
| + $code .= $indent . " setDOMException(WebCore::TypeMismatchError, args.GetIsolate());\n";
|
| $code .= $indent . " return;\n";
|
| $code .= $indent . "}\n";
|
| } elsif ($parameter->type eq "SVGMatrix" and $interfaceName eq "SVGTransformList") {
|
|
|