OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au> | 3 * Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au> |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 15 matching lines...) Expand all Loading... |
26 | 26 |
27 // http://www.w3.org/TR/SVG2/animate.html#InterfaceSVGAnimationElement | 27 // http://www.w3.org/TR/SVG2/animate.html#InterfaceSVGAnimationElement |
28 | 28 |
29 interface SVGAnimationElement : SVGElement { | 29 interface SVGAnimationElement : SVGElement { |
30 readonly attribute SVGElement targetElement; | 30 readonly attribute SVGElement targetElement; |
31 | 31 |
32 attribute EventHandler onbegin; | 32 attribute EventHandler onbegin; |
33 attribute EventHandler onend; | 33 attribute EventHandler onend; |
34 attribute EventHandler onrepeat; | 34 attribute EventHandler onrepeat; |
35 | 35 |
36 float getStartTime(); | 36 [RaisesException] float getStartTime(); |
37 float getCurrentTime(); | 37 float getCurrentTime(); |
38 float getSimpleDuration(); | 38 [RaisesException] float getSimpleDuration(); |
39 | 39 |
40 void beginElement(); | 40 void beginElement(); |
41 void beginElementAt(float offset); | 41 void beginElementAt(float offset); |
42 void endElement(); | 42 void endElement(); |
43 void endElementAt(float offset); | 43 void endElementAt(float offset); |
44 }; | 44 }; |
45 | 45 |
46 SVGAnimationElement implements SVGTests; | 46 SVGAnimationElement implements SVGTests; |
OLD | NEW |