Index: Source/core/svg/SVGPathSegArcRel.idl |
diff --git a/Source/core/svg/SVGPathSegArcRel.idl b/Source/core/svg/SVGPathSegArcRel.idl |
index d682c2c01bc6386a8164f9db71b3599a60bc6aff..2c81a878d51ff019eff0e62a438d37232432bff5 100644 |
--- a/Source/core/svg/SVGPathSegArcRel.idl |
+++ b/Source/core/svg/SVGPathSegArcRel.idl |
@@ -24,13 +24,14 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
-interface SVGPathSegArcRel : SVGPathSeg { |
- [StrictTypeChecking] attribute float x; |
- [StrictTypeChecking] attribute float y; |
- [StrictTypeChecking] attribute float r1; |
- [StrictTypeChecking] attribute float r2; |
- [StrictTypeChecking] attribute float angle; |
- [StrictTypeChecking] attribute boolean largeArcFlag; |
- [StrictTypeChecking] attribute boolean sweepFlag; |
+[ |
+ StrictTypeChecking, |
+] interface SVGPathSegArcRel : SVGPathSeg { |
+ attribute float x; |
+ attribute float y; |
+ attribute float r1; |
+ attribute float r2; |
+ attribute float angle; |
+ attribute boolean largeArcFlag; |
+ attribute boolean sweepFlag; |
}; |
- |