Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(99)

Side by Side Diff: Source/core/svg/SVGAnimationElement.idl

Issue 1088933005: Throw exception if querying SVGAnimationElement with unresolved interval (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/svg/SVGAnimationElement.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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;
OLDNEW
« no previous file with comments | « Source/core/svg/SVGAnimationElement.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698