diff options
Diffstat (limited to 'Source/WebCore/svg/SVGPathSegMovetoRel.idl')
-rw-r--r-- | Source/WebCore/svg/SVGPathSegMovetoRel.idl | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Source/WebCore/svg/SVGPathSegMovetoRel.idl b/Source/WebCore/svg/SVGPathSegMovetoRel.idl index 38edb6b4b..217912dde 100644 --- a/Source/WebCore/svg/SVGPathSegMovetoRel.idl +++ b/Source/WebCore/svg/SVGPathSegMovetoRel.idl @@ -24,10 +24,8 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -[ - Conditional=SVG -] interface SVGPathSegMovetoRel : SVGPathSeg { - [StrictTypeChecking] attribute float x; - [StrictTypeChecking] attribute float y; +interface SVGPathSegMovetoRel : SVGPathSeg { + attribute unrestricted float x; + attribute unrestricted float y; }; |