Index: Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.idl |
diff --git a/Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.idl b/Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.idl |
index 050926aad70dfd070ce75dcb0af01c45d79f7814..aba38479dc8de878f3a13a017a1d6840c2aba018 100644 |
--- a/Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.idl |
+++ b/Source/core/svg/SVGPathSegCurvetoCubicSmoothAbs.idl |
@@ -24,10 +24,11 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
-interface SVGPathSegCurvetoCubicSmoothAbs : SVGPathSeg { |
- [StrictTypeChecking] attribute float x; |
- [StrictTypeChecking] attribute float y; |
- [StrictTypeChecking] attribute float x2; |
- [StrictTypeChecking] attribute float y2; |
+[ |
+ StrictTypeChecking, |
+] interface SVGPathSegCurvetoCubicSmoothAbs : SVGPathSeg { |
+ attribute float x; |
+ attribute float y; |
+ attribute float x2; |
+ attribute float y2; |
}; |
- |