Index: Source/core/svg/SVGPathSegCurvetoCubicRel.idl |
diff --git a/Source/core/svg/SVGPathSegCurvetoCubicRel.idl b/Source/core/svg/SVGPathSegCurvetoCubicRel.idl |
index 352bb42317f6eb2effbbe0c7ba551a45251f973b..645276d48fc36677eabd7686ae9079609cc48b60 100644 |
--- a/Source/core/svg/SVGPathSegCurvetoCubicRel.idl |
+++ b/Source/core/svg/SVGPathSegCurvetoCubicRel.idl |
@@ -24,12 +24,14 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
-interface SVGPathSegCurvetoCubicRel : 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 SVGPathSegCurvetoCubicRel : SVGPathSeg { |
+ attribute float x; |
+ attribute float y; |
+ attribute float x1; |
+ attribute float y1; |
+ attribute float x2; |
+ attribute float y2; |
}; |