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

Side by Side Diff: client/dom/generated/src/frog/HTMLElement.dart

Issue 8574040: Support DOMString[] and regenerate from IDL (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix Window.postMessage Created 9 years, 1 month 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
OLDNEW
1 1
2 class HTMLElement extends Element native "HTMLElement" { 2 class HTMLElement extends Element native "HTMLElement" {
3 3
4 HTMLCollection children; 4 HTMLCollection children;
5 5
6 DOMTokenList classList; 6 DOMTokenList classList;
7 7
8 String className; 8 String className;
9 9
10 String contentEditable; 10 String contentEditable;
11 11
12 String dir; 12 String dir;
13 13
14 bool draggable; 14 bool draggable;
15 15
16 bool hidden; 16 bool hidden;
17 17
18 String id; 18 String id;
19 19
20 String innerHTML; 20 String innerHTML;
21 21
22 String innerText; 22 String innerText;
23 23
24 bool isContentEditable; 24 bool isContentEditable;
25 25
26 String itemId;
27
28 DOMSettableTokenList itemProp;
29
30 DOMSettableTokenList itemRef;
31
32 bool itemScope;
33
34 DOMSettableTokenList itemType;
35
36 Object itemValue;
37
26 String lang; 38 String lang;
27 39
28 String outerHTML; 40 String outerHTML;
29 41
30 String outerText; 42 String outerText;
31 43
32 bool spellcheck; 44 bool spellcheck;
33 45
34 int tabIndex; 46 int tabIndex;
35 47
36 String title; 48 String title;
37 49
38 String webkitdropzone; 50 String webkitdropzone;
39 51
40 Element insertAdjacentElement(String where, Element element) native; 52 Element insertAdjacentElement(String where, Element element) native;
41 53
42 void insertAdjacentHTML(String where, String html) native; 54 void insertAdjacentHTML(String where, String html) native;
43 55
44 void insertAdjacentText(String where, String text) native; 56 void insertAdjacentText(String where, String text) native;
45 } 57 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/Document.dart ('k') | client/dom/generated/src/frog/HTMLTrackElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698