Index: Source/core/svg/SVGPathSegMovetoAbs.idl |
diff --git a/Source/core/svg/SVGPathSegMovetoAbs.idl b/Source/core/svg/SVGPathSegMovetoAbs.idl |
index 220401ea812d8f7bf375776a5df089b5acbb1efe..d92e4671edfb9f50970022120281d3e7b597ce5d 100644 |
--- a/Source/core/svg/SVGPathSegMovetoAbs.idl |
+++ b/Source/core/svg/SVGPathSegMovetoAbs.idl |
@@ -24,8 +24,9 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
-interface SVGPathSegMovetoAbs : SVGPathSeg { |
- [StrictTypeChecking] attribute float x; |
- [StrictTypeChecking] attribute float y; |
+[ |
+ StrictTypeChecking, |
+] interface SVGPathSegMovetoAbs : SVGPathSeg { |
+ attribute float x; |
+ attribute float y; |
}; |
- |