diff options
Diffstat (limited to 'Source/WebCore/svg/SVGPathSegArcRel.idl')
-rw-r--r-- | Source/WebCore/svg/SVGPathSegArcRel.idl | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/Source/WebCore/svg/SVGPathSegArcRel.idl b/Source/WebCore/svg/SVGPathSegArcRel.idl index 3946d8d6e..86fd3b2e8 100644 --- a/Source/WebCore/svg/SVGPathSegArcRel.idl +++ b/Source/WebCore/svg/SVGPathSegArcRel.idl @@ -24,15 +24,13 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -[ - Conditional=SVG -] interface SVGPathSegArcRel : 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 SVGPathSegArcRel : 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; }; |