diff options
Diffstat (limited to 'Source/WebCore/svg/SVGAnimationElement.idl')
-rw-r--r-- | Source/WebCore/svg/SVGAnimationElement.idl | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/Source/WebCore/svg/SVGAnimationElement.idl b/Source/WebCore/svg/SVGAnimationElement.idl index 664f44a0d..839ca68a8 100644 --- a/Source/WebCore/svg/SVGAnimationElement.idl +++ b/Source/WebCore/svg/SVGAnimationElement.idl @@ -24,19 +24,17 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -[ - Conditional=SVG, -] interface SVGAnimationElement : SVGElement { +interface SVGAnimationElement : SVGElement { readonly attribute SVGElement targetElement; - float getStartTime(); - float getCurrentTime(); - [RaisesException] float getSimpleDuration(); + unrestricted float getStartTime(); + unrestricted float getCurrentTime(); + unrestricted float getSimpleDuration(); void beginElement(); - void beginElementAt([Default=Undefined] optional float offset); + void beginElementAt(optional unrestricted float offset = NaN); void endElement(); - void endElementAt([Default=Undefined] optional float offset); + void endElementAt(optional unrestricted float offset = NaN); }; SVGAnimationElement implements SVGExternalResourcesRequired; |