| Index: Source/core/svg/SVGColor.cpp
|
| diff --git a/Source/core/svg/SVGColor.cpp b/Source/core/svg/SVGColor.cpp
|
| index 5253f89a7f567503a0124f4387dd5589962fce18..5beba0156ee66cf5579924dbc4e5787988e4ce41 100644
|
| --- a/Source/core/svg/SVGColor.cpp
|
| +++ b/Source/core/svg/SVGColor.cpp
|
| @@ -58,17 +58,17 @@ void SVGColor::setRGBColor(const String&, ExceptionState& es)
|
| {
|
| // The whole SVGColor interface is deprecated in SVG 1.1 (2nd edition).
|
| // The setters are the most problematic part so we remove the support for those first.
|
| - es.throwDOMException(NoModificationAllowedError);
|
| + es.throwUninformativeAndGenericDOMException(NoModificationAllowedError);
|
| }
|
|
|
| void SVGColor::setRGBColorICCColor(const String&, const String&, ExceptionState& es)
|
| {
|
| - es.throwDOMException(NoModificationAllowedError);
|
| + es.throwUninformativeAndGenericDOMException(NoModificationAllowedError);
|
| }
|
|
|
| void SVGColor::setColor(unsigned short, const String&, const String&, ExceptionState& es)
|
| {
|
| - es.throwDOMException(NoModificationAllowedError);
|
| + es.throwUninformativeAndGenericDOMException(NoModificationAllowedError);
|
| }
|
|
|
| String SVGColor::customCssText() const
|
|
|