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

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

Issue 9663027: Remove generated directories with 100s of files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
OLDNEW
(Empty)
1
2 class _DocumentJs extends _NodeJs implements Document native "*Document" {
3
4 final String URL;
5
6 final _HTMLCollectionJs anchors;
7
8 final _HTMLCollectionJs applets;
9
10 _HTMLElementJs body;
11
12 final String characterSet;
13
14 String charset;
15
16 final String compatMode;
17
18 String cookie;
19
20 final String defaultCharset;
21
22 final _DOMWindowJs defaultView;
23
24 final _DocumentTypeJs doctype;
25
26 final _ElementJs documentElement;
27
28 String documentURI;
29
30 String domain;
31
32 final _HTMLCollectionJs forms;
33
34 final _HTMLHeadElementJs head;
35
36 final _HTMLCollectionJs images;
37
38 final _DOMImplementationJs implementation;
39
40 final String inputEncoding;
41
42 final String lastModified;
43
44 final _HTMLCollectionJs links;
45
46 _LocationJs location;
47
48 final String preferredStylesheetSet;
49
50 final String readyState;
51
52 final String referrer;
53
54 String selectedStylesheetSet;
55
56 final _StyleSheetListJs styleSheets;
57
58 String title;
59
60 final _ElementJs webkitCurrentFullScreenElement;
61
62 final bool webkitFullScreenKeyboardInputAllowed;
63
64 final bool webkitHidden;
65
66 final bool webkitIsFullScreen;
67
68 final String webkitVisibilityState;
69
70 final String xmlEncoding;
71
72 bool xmlStandalone;
73
74 String xmlVersion;
75
76 _NodeJs adoptNode(_NodeJs source) native;
77
78 _RangeJs caretRangeFromPoint(int x, int y) native;
79
80 _AttrJs createAttribute(String name) native;
81
82 _AttrJs createAttributeNS(String namespaceURI, String qualifiedName) native;
83
84 _CDATASectionJs createCDATASection(String data) native;
85
86 _CommentJs createComment(String data) native;
87
88 _DocumentFragmentJs createDocumentFragment() native;
89
90 _ElementJs createElement(String tagName) native;
91
92 _ElementJs createElementNS(String namespaceURI, String qualifiedName) native;
93
94 _EntityReferenceJs createEntityReference(String name) native;
95
96 _EventJs createEvent(String eventType) native;
97
98 _XPathExpressionJs createExpression(String expression, _XPathNSResolverJs reso lver) native;
99
100 _XPathNSResolverJs createNSResolver(_NodeJs nodeResolver) native;
101
102 _NodeIteratorJs createNodeIterator(_NodeJs root, int whatToShow, _NodeFilterJs filter, bool expandEntityReferences) native;
103
104 _ProcessingInstructionJs createProcessingInstruction(String target, String dat a) native;
105
106 _RangeJs createRange() native;
107
108 _TextJs createTextNode(String data) native;
109
110 _TouchJs createTouch(_DOMWindowJs window, _EventTargetJs target, int identifie r, int pageX, int pageY, int screenX, int screenY, int webkitRadiusX, int webkit RadiusY, num webkitRotationAngle, num webkitForce) native;
111
112 _TouchListJs createTouchList() native;
113
114 _TreeWalkerJs createTreeWalker(_NodeJs root, int whatToShow, _NodeFilterJs fil ter, bool expandEntityReferences) native;
115
116 _ElementJs elementFromPoint(int x, int y) native;
117
118 _XPathResultJs evaluate(String expression, _NodeJs contextNode, _XPathNSResolv erJs resolver, int type, _XPathResultJs inResult) native;
119
120 bool execCommand(String command, bool userInterface, String value) native;
121
122 _CanvasRenderingContextJs getCSSCanvasContext(String contextId, String name, i nt width, int height) native;
123
124 _ElementJs getElementById(String elementId) native;
125
126 _NodeListJs getElementsByClassName(String tagname) native;
127
128 _NodeListJs getElementsByName(String elementName) native;
129
130 _NodeListJs getElementsByTagName(String tagname) native;
131
132 _NodeListJs getElementsByTagNameNS(String namespaceURI, String localName) nati ve;
133
134 _CSSStyleDeclarationJs getOverrideStyle(_ElementJs element, String pseudoEleme nt) native;
135
136 _DOMSelectionJs getSelection() native;
137
138 _NodeJs importNode(_NodeJs importedNode, [bool deep = null]) native;
139
140 bool queryCommandEnabled(String command) native;
141
142 bool queryCommandIndeterm(String command) native;
143
144 bool queryCommandState(String command) native;
145
146 bool queryCommandSupported(String command) native;
147
148 String queryCommandValue(String command) native;
149
150 _ElementJs querySelector(String selectors) native;
151
152 _NodeListJs querySelectorAll(String selectors) native;
153
154 void webkitCancelFullScreen() native;
155
156 _WebKitNamedFlowJs webkitGetFlowByName(String name) native;
157 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/DirectoryReaderSync.dart ('k') | client/dom/generated/src/frog/DocumentFragment.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698