Index: Source/bindings/scripts/deprecated_code_generator_v8.pm |
diff --git a/Source/bindings/scripts/deprecated_code_generator_v8.pm b/Source/bindings/scripts/deprecated_code_generator_v8.pm |
index c2aaa5667577f38d55310e70b51a383eeb9860ec..b0ebafe6049b60c44b3ace495c37396603071718 100644 |
--- a/Source/bindings/scripts/deprecated_code_generator_v8.pm |
+++ b/Source/bindings/scripts/deprecated_code_generator_v8.pm |
@@ -5834,10 +5834,6 @@ sub AttributeNameForGetterAndSetter |
# Avoid clash with C++ keyword. |
$attributeName = "_operator" if $attributeName eq "operator"; |
- # SVGAElement defines a non-virtual "String& target() const" method which clashes with "virtual String target() const" in Element. |
- # To solve this issue the SVGAElement method was renamed to "svgTarget", take care of that when calling this method. |
- $attributeName = "svgTarget" if $attributeName eq "target" and $attributeType eq "SVGAnimatedString"; |
- |
return $attributeName; |
} |