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

Side by Side Diff: third_party/WebCore/dom/Element.idl

Issue 12319151: WebKit IDL roll. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « third_party/WebCore/dom/CustomEvent.idl ('k') | third_party/WebCore/dom/MessageEvent.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) 2006, 2007, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 23 matching lines...) Expand all
34 in [Optional=DefaultIsUndefined] DOMString value) 34 in [Optional=DefaultIsUndefined] DOMString value)
35 raises(DOMException); 35 raises(DOMException);
36 void removeAttribute(in [Optional=DefaultIsUndefined] DOMString name); 36 void removeAttribute(in [Optional=DefaultIsUndefined] DOMString name);
37 Attr getAttributeNode(in [Optional=DefaultIsUndefined] DOMString name); 37 Attr getAttributeNode(in [Optional=DefaultIsUndefined] DOMString name);
38 Attr setAttributeNode(in [Optional=DefaultIsUndefined] Attr newAttr) 38 Attr setAttributeNode(in [Optional=DefaultIsUndefined] Attr newAttr)
39 raises(DOMException); 39 raises(DOMException);
40 Attr removeAttributeNode(in [Optional=DefaultIsUndefined] Attr oldAttr) 40 Attr removeAttributeNode(in [Optional=DefaultIsUndefined] Attr oldAttr)
41 raises(DOMException); 41 raises(DOMException);
42 NodeList getElementsByTagName(in [Optional=DefaultIsUndefined] DOMString nam e); 42 NodeList getElementsByTagName(in [Optional=DefaultIsUndefined] DOMString nam e);
43 43
44 #if !defined(LANGUAGE_OBJECTIVE_C)
45 // For ObjC this is defined on Node for legacy support.
46 readonly attribute NamedNodeMap attributes;
47 boolean hasAttributes();
48 #endif
49
44 // DOM Level 2 Core 50 // DOM Level 2 Core
45 51
46 [ObjCLegacyUnnamedParameters] DOMString getAttributeNS(in [TreatNullAs=NullS tring,Optional=DefaultIsUndefined] DOMString namespaceURI, 52 [ObjCLegacyUnnamedParameters] DOMString getAttributeNS(in [TreatNullAs=NullS tring,Optional=DefaultIsUndefined] DOMString namespaceURI,
47 in [Optional=DefaultIsUndefined] DOM String localName); 53 in [Optional=DefaultIsUndefined] DOM String localName);
48 [ObjCLegacyUnnamedParameters] void setAttributeNS(in [TreatNullAs=NullString ,Optional=DefaultIsUndefined] DOMString namespaceURI, 54 [ObjCLegacyUnnamedParameters] void setAttributeNS(in [TreatNullAs=NullString ,Optional=DefaultIsUndefined] DOMString namespaceURI,
49 in [Optional=DefaultIsUndefined] DOMStrin g qualifiedName, 55 in [Optional=DefaultIsUndefined] DOMStrin g qualifiedName,
50 in [Optional=DefaultIsUndefined] DOMStrin g value) 56 in [Optional=DefaultIsUndefined] DOMStrin g value)
51 raises(DOMException); 57 raises(DOMException);
52 [ObjCLegacyUnnamedParameters] void removeAttributeNS(in [TreatNullAs=NullStr ing] DOMString namespaceURI, 58 [ObjCLegacyUnnamedParameters] void removeAttributeNS(in [TreatNullAs=NullStr ing] DOMString namespaceURI,
53 in DOMString localName); 59 in DOMString localName);
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 [NotEnumerable] attribute EventListener onselectstart; 227 [NotEnumerable] attribute EventListener onselectstart;
222 [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime=touch] attribute EventListener ontouchstart; 228 [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime=touch] attribute EventListener ontouchstart;
223 [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime=touch] attribute EventListener ontouchmove; 229 [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime=touch] attribute EventListener ontouchmove;
224 [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime=touch] attribute EventListener ontouchend; 230 [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime=touch] attribute EventListener ontouchend;
225 [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime=touch] attribute EventListener ontouchcancel; 231 [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime=touch] attribute EventListener ontouchcancel;
226 [NotEnumerable, Conditional=FULLSCREEN_API] attribute EventListener onwebkit fullscreenchange; 232 [NotEnumerable, Conditional=FULLSCREEN_API] attribute EventListener onwebkit fullscreenchange;
227 [NotEnumerable, Conditional=FULLSCREEN_API] attribute EventListener onwebkit fullscreenerror; 233 [NotEnumerable, Conditional=FULLSCREEN_API] attribute EventListener onwebkit fullscreenerror;
228 #endif 234 #endif
229 }; 235 };
230 236
OLDNEW
« no previous file with comments | « third_party/WebCore/dom/CustomEvent.idl ('k') | third_party/WebCore/dom/MessageEvent.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698