Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(713)

Unified Diff: third_party/WebKit/Source/core/svg/SVGRectTearOff.cpp

Issue 2357463002: Consolidate read-only exception throwing for SVG*TearOffs (Closed)
Patch Set: Baseline updates Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/svg/SVGRectTearOff.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGRectTearOff.cpp b/third_party/WebKit/Source/core/svg/SVGRectTearOff.cpp
index adfb719f10d83fff57d2f19c84c0e454bfcd3787..ba05bb421b03c8fc6857f99193407a1219d8438b 100644
--- a/third_party/WebKit/Source/core/svg/SVGRectTearOff.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGRectTearOff.cpp
@@ -30,8 +30,6 @@
#include "core/svg/SVGRectTearOff.h"
-#include "bindings/core/v8/ExceptionState.h"
-#include "core/dom/ExceptionCode.h"
#include "core/svg/SVGElement.h"
namespace blink {
@@ -44,10 +42,9 @@ SVGRectTearOff::SVGRectTearOff(SVGRect* target, SVGElement* contextElement, Prop
void SVGRectTearOff::setX(float f, ExceptionState& exceptionState)
{
if (isImmutable()) {
- exceptionState.throwDOMException(NoModificationAllowedError, "The attribute is read-only.");
+ throwReadOnly(exceptionState);
return;
}
-
target()->setX(f);
commitChange();
}
@@ -55,10 +52,9 @@ void SVGRectTearOff::setX(float f, ExceptionState& exceptionState)
void SVGRectTearOff::setY(float f, ExceptionState& exceptionState)
{
if (isImmutable()) {
- exceptionState.throwDOMException(NoModificationAllowedError, "The attribute is read-only.");
+ throwReadOnly(exceptionState);
return;
}
-
target()->setY(f);
commitChange();
}
@@ -66,10 +62,9 @@ void SVGRectTearOff::setY(float f, ExceptionState& exceptionState)
void SVGRectTearOff::setWidth(float f, ExceptionState& exceptionState)
{
if (isImmutable()) {
- exceptionState.throwDOMException(NoModificationAllowedError, "The attribute is read-only.");
+ throwReadOnly(exceptionState);
return;
}
-
target()->setWidth(f);
commitChange();
}
@@ -77,10 +72,9 @@ void SVGRectTearOff::setWidth(float f, ExceptionState& exceptionState)
void SVGRectTearOff::setHeight(float f, ExceptionState& exceptionState)
{
if (isImmutable()) {
- exceptionState.throwDOMException(NoModificationAllowedError, "The attribute is read-only.");
+ throwReadOnly(exceptionState);
return;
}
-
target()->setHeight(f);
commitChange();
}

Powered by Google App Engine
This is Rietveld 408576698