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

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

Issue 9615032: Refresh dom_frog. (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
1 1
2 class _DocumentJs extends _NodeJs implements Document native "*Document" { 2 class _DocumentJs extends _NodeJs implements Document native "*Document" {
3 3
4 final String URL; 4 final String URL;
5 5
6 final _HTMLCollectionJs anchors; 6 final _HTMLCollectionJs anchors;
7 7
8 final _HTMLCollectionJs applets; 8 final _HTMLCollectionJs applets;
9 9
10 _HTMLElementJs body; 10 _HTMLElementJs body;
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 _TouchListJs createTouchList() native; 112 _TouchListJs createTouchList() native;
113 113
114 _TreeWalkerJs createTreeWalker(_NodeJs root, int whatToShow, _NodeFilterJs fil ter, bool expandEntityReferences) native; 114 _TreeWalkerJs createTreeWalker(_NodeJs root, int whatToShow, _NodeFilterJs fil ter, bool expandEntityReferences) native;
115 115
116 _ElementJs elementFromPoint(int x, int y) native; 116 _ElementJs elementFromPoint(int x, int y) native;
117 117
118 _XPathResultJs evaluate(String expression, _NodeJs contextNode, _XPathNSResolv erJs resolver, int type, _XPathResultJs inResult) native; 118 _XPathResultJs evaluate(String expression, _NodeJs contextNode, _XPathNSResolv erJs resolver, int type, _XPathResultJs inResult) native;
119 119
120 bool execCommand(String command, bool userInterface, String value) native; 120 bool execCommand(String command, bool userInterface, String value) native;
121 121
122 Object getCSSCanvasContext(String contextId, String name, int width, int heigh t) native; 122 _CanvasRenderingContextJs getCSSCanvasContext(String contextId, String name, i nt width, int height) native;
123 123
124 _ElementJs getElementById(String elementId) native; 124 _ElementJs getElementById(String elementId) native;
125 125
126 _NodeListJs getElementsByClassName(String tagname) native; 126 _NodeListJs getElementsByClassName(String tagname) native;
127 127
128 _NodeListJs getElementsByName(String elementName) native; 128 _NodeListJs getElementsByName(String elementName) native;
129 129
130 _NodeListJs getElementsByTagName(String tagname) native; 130 _NodeListJs getElementsByTagName(String tagname) native;
131 131
132 _NodeListJs getElementsByTagNameNS(String namespaceURI, String localName) nati ve; 132 _NodeListJs getElementsByTagNameNS(String namespaceURI, String localName) nati ve;
(...skipping 15 matching lines...) Expand all
148 String queryCommandValue(String command) native; 148 String queryCommandValue(String command) native;
149 149
150 _ElementJs querySelector(String selectors) native; 150 _ElementJs querySelector(String selectors) native;
151 151
152 _NodeListJs querySelectorAll(String selectors) native; 152 _NodeListJs querySelectorAll(String selectors) native;
153 153
154 void webkitCancelFullScreen() native; 154 void webkitCancelFullScreen() native;
155 155
156 _WebKitNamedFlowJs webkitGetFlowByName(String name) native; 156 _WebKitNamedFlowJs webkitGetFlowByName(String name) native;
157 } 157 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/DataTransferItem.dart ('k') | client/dom/generated/src/frog/IDBDatabase.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698