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

Side by Side Diff: Source/core/html/HTMLElement.idl

Issue 531183003: bindings: Retires manual dispatching in createV8{HTML,SVG}Wrapper, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added FIXME comments. Created 6 years, 3 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/html/HTMLElement.cpp ('k') | Source/core/html/ImageData.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,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21 [ 21 interface HTMLElement : Element {
22 Custom=Wrap,
23 ] interface HTMLElement : Element {
24 [Reflect] attribute DOMString title; 22 [Reflect] attribute DOMString title;
25 [Reflect] attribute DOMString lang; 23 [Reflect] attribute DOMString lang;
26 attribute boolean translate; 24 attribute boolean translate;
27 attribute DOMString dir; 25 attribute DOMString dir;
28 26
29 [CustomElementCallbacks] attribute long tabIndex; 27 [CustomElementCallbacks] attribute long tabIndex;
30 [CustomElementCallbacks] attribute boolean draggable; 28 [CustomElementCallbacks] attribute boolean draggable;
31 [Reflect, TreatNullAs=NullString, MeasureAs=PrefixedHTMLElementDropzone] att ribute DOMString webkitdropzone; 29 [Reflect, TreatNullAs=NullString, MeasureAs=PrefixedHTMLElementDropzone] att ribute DOMString webkitdropzone;
32 [Reflect] attribute boolean hidden; 30 [Reflect] attribute boolean hidden;
33 [Reflect] attribute DOMString accessKey; 31 [Reflect] attribute DOMString accessKey;
34 32
35 // Extensions 33 // Extensions
36 [TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter, Mea sureAs=HTMLElementInnerText] attribute DOMString innerText; 34 [TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter, Mea sureAs=HTMLElementInnerText] attribute DOMString innerText;
37 [TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter, Mea sureAs=HTMLElementOuterText] attribute DOMString outerText; 35 [TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter, Mea sureAs=HTMLElementOuterText] attribute DOMString outerText;
38 36
39 [RuntimeEnabled=IMEAPI] readonly attribute InputMethodContext inputMethodCon text; 37 [RuntimeEnabled=IMEAPI] readonly attribute InputMethodContext inputMethodCon text;
40 38
41 [CustomElementCallbacks, RaisesException=Setter] attribute DOMString content Editable; 39 [CustomElementCallbacks, RaisesException=Setter] attribute DOMString content Editable;
42 readonly attribute boolean isContentEditable; 40 readonly attribute boolean isContentEditable;
43 [RuntimeEnabled=ContextMenu] attribute HTMLMenuElement? contextMenu; 41 [RuntimeEnabled=ContextMenu] attribute HTMLMenuElement? contextMenu;
44 42
45 attribute boolean spellcheck; 43 attribute boolean spellcheck;
46 44
47 void click(); 45 void click();
48 }; 46 };
49 47
50 HTMLElement implements GlobalEventHandlers; 48 HTMLElement implements GlobalEventHandlers;
51 49
OLDNEW
« no previous file with comments | « Source/core/html/HTMLElement.cpp ('k') | Source/core/html/ImageData.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698