Index: Source/core/svg/SVGPathSegCurvetoCubicAbs.idl |
diff --git a/Source/core/svg/SVGPathSegCurvetoCubicAbs.idl b/Source/core/svg/SVGPathSegCurvetoCubicAbs.idl |
index 982cb68063f898015db3dec2afdc438261c9fbaa..c8703d6a1e83bfa097888a62d0516444c89e9435 100644 |
--- a/Source/core/svg/SVGPathSegCurvetoCubicAbs.idl |
+++ b/Source/core/svg/SVGPathSegCurvetoCubicAbs.idl |
@@ -24,12 +24,14 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
-interface SVGPathSegCurvetoCubicAbs : SVGPathSeg { |
- [StrictTypeChecking] attribute float x; |
- [StrictTypeChecking] attribute float y; |
- [StrictTypeChecking] attribute float x1; |
- [StrictTypeChecking] attribute float y1; |
- [StrictTypeChecking] attribute float x2; |
- [StrictTypeChecking] attribute float y2; |
+[ |
+ StrictTypeChecking, |
+] interface SVGPathSegCurvetoCubicAbs : SVGPathSeg { |
+ attribute float x; |
+ attribute float y; |
+ attribute float x1; |
+ attribute float y1; |
+ attribute float x2; |
+ attribute float y2; |
}; |