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