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

Side by Side Diff: core/svg/SVGElementInstance.idl

Issue 23014006: Roll IDL to multivm@1350 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 7 years, 4 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 | « core/svg/SVGElement.idl ('k') | core/svg/SVGFEBlendElement.idl » ('j') | 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) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2008 Apple Inc. All rights reserved. 3 * Copyright (C) 2008 Apple Inc. All rights reserved.
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 18 matching lines...) Expand all
29 readonly attribute SVGElement correspondingElement; 29 readonly attribute SVGElement correspondingElement;
30 readonly attribute SVGUseElement correspondingUseElement; 30 readonly attribute SVGUseElement correspondingUseElement;
31 readonly attribute SVGElementInstance parentNode; 31 readonly attribute SVGElementInstance parentNode;
32 readonly attribute SVGElementInstanceList childNodes; 32 readonly attribute SVGElementInstanceList childNodes;
33 readonly attribute SVGElementInstance firstChild; 33 readonly attribute SVGElementInstance firstChild;
34 readonly attribute SVGElementInstance lastChild; 34 readonly attribute SVGElementInstance lastChild;
35 readonly attribute SVGElementInstance previousSibling; 35 readonly attribute SVGElementInstance previousSibling;
36 readonly attribute SVGElementInstance nextSibling; 36 readonly attribute SVGElementInstance nextSibling;
37 37
38 // EventTarget 38 // EventTarget
39 [NotEnumerable] attribute EventListener onabort; 39 [NotEnumerable] attribute EventHandler onabort;
40 [NotEnumerable] attribute EventListener onblur; 40 [NotEnumerable] attribute EventHandler onblur;
41 [NotEnumerable] attribute EventListener onchange; 41 [NotEnumerable] attribute EventHandler onchange;
42 [NotEnumerable] attribute EventListener onclick; 42 [NotEnumerable] attribute EventHandler onclick;
43 [NotEnumerable] attribute EventListener oncontextmenu; 43 [NotEnumerable] attribute EventHandler oncontextmenu;
44 [NotEnumerable] attribute EventListener ondblclick; 44 [NotEnumerable] attribute EventHandler ondblclick;
45 [NotEnumerable] attribute EventListener onerror; 45 [NotEnumerable] attribute EventHandler onerror;
46 [NotEnumerable] attribute EventListener onfocus; 46 [NotEnumerable] attribute EventHandler onfocus;
47 [NotEnumerable] attribute EventListener oninput; 47 [NotEnumerable] attribute EventHandler oninput;
48 [NotEnumerable] attribute EventListener onkeydown; 48 [NotEnumerable] attribute EventHandler onkeydown;
49 [NotEnumerable] attribute EventListener onkeypress; 49 [NotEnumerable] attribute EventHandler onkeypress;
50 [NotEnumerable] attribute EventListener onkeyup; 50 [NotEnumerable] attribute EventHandler onkeyup;
51 [NotEnumerable] attribute EventListener onload; 51 [NotEnumerable] attribute EventHandler onload;
52 [NotEnumerable] attribute EventListener onmousedown; 52 [NotEnumerable] attribute EventHandler onmousedown;
53 [NotEnumerable] attribute EventListener onmouseenter; 53 [NotEnumerable] attribute EventHandler onmouseenter;
54 [NotEnumerable] attribute EventListener onmouseleave; 54 [NotEnumerable] attribute EventHandler onmouseleave;
55 [NotEnumerable] attribute EventListener onmousemove; 55 [NotEnumerable] attribute EventHandler onmousemove;
56 [NotEnumerable] attribute EventListener onmouseout; 56 [NotEnumerable] attribute EventHandler onmouseout;
57 [NotEnumerable] attribute EventListener onmouseover; 57 [NotEnumerable] attribute EventHandler onmouseover;
58 [NotEnumerable] attribute EventListener onmouseup; 58 [NotEnumerable] attribute EventHandler onmouseup;
59 [NotEnumerable] attribute EventListener onmousewheel; 59 [NotEnumerable] attribute EventHandler onmousewheel;
60 [NotEnumerable] attribute EventListener onbeforecut; 60 [NotEnumerable] attribute EventHandler onbeforecut;
61 [NotEnumerable] attribute EventListener oncut; 61 [NotEnumerable] attribute EventHandler oncut;
62 [NotEnumerable] attribute EventListener onbeforecopy; 62 [NotEnumerable] attribute EventHandler onbeforecopy;
63 [NotEnumerable] attribute EventListener oncopy; 63 [NotEnumerable] attribute EventHandler oncopy;
64 [NotEnumerable] attribute EventListener onbeforepaste; 64 [NotEnumerable] attribute EventHandler onbeforepaste;
65 [NotEnumerable] attribute EventListener onpaste; 65 [NotEnumerable] attribute EventHandler onpaste;
66 [NotEnumerable] attribute EventListener ondragenter; 66 [NotEnumerable] attribute EventHandler ondragenter;
67 [NotEnumerable] attribute EventListener ondragover; 67 [NotEnumerable] attribute EventHandler ondragover;
68 [NotEnumerable] attribute EventListener ondragleave; 68 [NotEnumerable] attribute EventHandler ondragleave;
69 [NotEnumerable] attribute EventListener ondrop; 69 [NotEnumerable] attribute EventHandler ondrop;
70 [NotEnumerable] attribute EventListener ondragstart; 70 [NotEnumerable] attribute EventHandler ondragstart;
71 [NotEnumerable] attribute EventListener ondrag; 71 [NotEnumerable] attribute EventHandler ondrag;
72 [NotEnumerable] attribute EventListener ondragend; 72 [NotEnumerable] attribute EventHandler ondragend;
73 [NotEnumerable] attribute EventListener onreset; 73 [NotEnumerable] attribute EventHandler onreset;
74 [NotEnumerable] attribute EventListener onresize; 74 [NotEnumerable] attribute EventHandler onresize;
75 [NotEnumerable] attribute EventListener onscroll; 75 [NotEnumerable] attribute EventHandler onscroll;
76 [NotEnumerable] attribute EventListener onsearch; 76 [NotEnumerable] attribute EventHandler onsearch;
77 [NotEnumerable] attribute EventListener onselect; 77 [NotEnumerable] attribute EventHandler onselect;
78 [NotEnumerable] attribute EventListener onselectstart; 78 [NotEnumerable] attribute EventHandler onselectstart;
79 [NotEnumerable] attribute EventListener onsubmit; 79 [NotEnumerable] attribute EventHandler onsubmit;
80 [NotEnumerable] attribute EventListener onunload; 80 [NotEnumerable] attribute EventHandler onunload;
81 }; 81 };
OLDNEW
« no previous file with comments | « core/svg/SVGElement.idl ('k') | core/svg/SVGFEBlendElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698