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

Side by Side Diff: third_party/WebCore/html/HTMLElement.idl

Issue 10825350: Roll IDL to multivm@762 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 | « third_party/WebCore/html/DOMURL.idl ('k') | third_party/WebCore/html/HTMLMediaElement.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 14 matching lines...) Expand all
25 JSCustomPushEventHandlerScope, 25 JSCustomPushEventHandlerScope,
26 V8CustomToJSObject 26 V8CustomToJSObject
27 ] HTMLElement : Element { 27 ] HTMLElement : Element {
28 // iht.com relies on id returning the empty string when no id i s present. 28 // iht.com relies on id returning the empty string when no id i s present.
29 // Other browsers do this as well. So we don't convert null to JS null. 29 // Other browsers do this as well. So we don't convert null to JS null.
30 attribute [Reflect] DOMString id; 30 attribute [Reflect] DOMString id;
31 attribute [Reflect] DOMString title; 31 attribute [Reflect] DOMString title;
32 attribute [Reflect] DOMString lang; 32 attribute [Reflect] DOMString lang;
33 attribute boolean translate; 33 attribute boolean translate;
34 attribute [Reflect] DOMString dir; 34 attribute [Reflect] DOMString dir;
35 attribute [Reflect=class] DOMString className;
36 readonly attribute DOMTokenList classList;
37 35
38 attribute long tabIndex; 36 attribute long tabIndex;
39 attribute boolean draggable; 37 attribute boolean draggable;
40 attribute [Reflect] DOMString webkitdropzone; 38 attribute [Reflect] DOMString webkitdropzone;
41 attribute [Reflect] boolean hidden; 39 attribute [Reflect] boolean hidden;
42 attribute [Reflect] DOMString accessKey; 40 attribute [Reflect] DOMString accessKey;
43 41
44 // Extensions 42 // Extensions
45 attribute [TreatNullAs=NullString] DOMString innerHTML 43 attribute [TreatNullAs=NullString] DOMString innerHTML
46 setter raises(DOMException); 44 setter raises(DOMException);
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 #endif 88 #endif
91 89
92 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C 90 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C
93 readonly attribute DOMString titleDisplayString; 91 readonly attribute DOMString titleDisplayString;
94 #endif 92 #endif
95 93
96 void click(); 94 void click();
97 }; 95 };
98 96
99 } 97 }
OLDNEW
« no previous file with comments | « third_party/WebCore/html/DOMURL.idl ('k') | third_party/WebCore/html/HTMLMediaElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698