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

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

Issue 201673003: [SVG2] Add onbegin, onend and onrepeat EventHandlers on SVGAnimationElement (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fs review Created 6 years, 9 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
« no previous file with comments | « Source/core/svg/SVGAnimationElement.h ('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 17 matching lines...) Expand all
28 readonly attribute SVGElement targetElement; 28 readonly attribute SVGElement targetElement;
29 29
30 float getStartTime(); 30 float getStartTime();
31 float getCurrentTime(); 31 float getCurrentTime();
32 float getSimpleDuration(); 32 float getSimpleDuration();
33 33
34 void beginElement(); 34 void beginElement();
35 void beginElementAt([Default=Undefined] optional float offset); 35 void beginElementAt([Default=Undefined] optional float offset);
36 void endElement(); 36 void endElement();
37 void endElementAt([Default=Undefined] optional float offset); 37 void endElementAt([Default=Undefined] optional float offset);
38
39 attribute EventHandler onbegin;
40 attribute EventHandler onend;
41 attribute EventHandler onrepeat;
38 }; 42 };
39 43
40 SVGAnimationElement implements SVGTests; 44 SVGAnimationElement implements SVGTests;
OLDNEW
« no previous file with comments | « Source/core/svg/SVGAnimationElement.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698