diff options
Diffstat (limited to 'Source/WebCore/svg/SVGPathSegArcAbs.idl')
-rw-r--r-- | Source/WebCore/svg/SVGPathSegArcAbs.idl | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/Source/WebCore/svg/SVGPathSegArcAbs.idl b/Source/WebCore/svg/SVGPathSegArcAbs.idl index fe8fb52ae..784678d67 100644 --- a/Source/WebCore/svg/SVGPathSegArcAbs.idl +++ b/Source/WebCore/svg/SVGPathSegArcAbs.idl @@ -24,15 +24,13 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -[ - Conditional=SVG -] interface SVGPathSegArcAbs : SVGPathSeg { - [StrictTypeChecking] attribute float x; - [StrictTypeChecking] attribute float y; - [StrictTypeChecking] attribute float r1; - [StrictTypeChecking] attribute float r2; - [StrictTypeChecking] attribute float angle; - [StrictTypeChecking] attribute boolean largeArcFlag; - [StrictTypeChecking] attribute boolean sweepFlag; +interface SVGPathSegArcAbs : SVGPathSeg { + attribute unrestricted float x; + attribute unrestricted float y; + attribute unrestricted float r1; + attribute unrestricted float r2; + attribute unrestricted float angle; + attribute boolean largeArcFlag; + attribute boolean sweepFlag; }; |