OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
6 | 6 |
7 interface Document extends Node, NodeSelector { | 7 interface Document extends Node, NodeSelector { |
8 | 8 |
9 final String URL; | 9 final String URL; |
10 | 10 |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 TouchList createTouchList(); | 117 TouchList createTouchList(); |
118 | 118 |
119 TreeWalker createTreeWalker(Node root, int whatToShow, NodeFilter filter, bool
expandEntityReferences); | 119 TreeWalker createTreeWalker(Node root, int whatToShow, NodeFilter filter, bool
expandEntityReferences); |
120 | 120 |
121 Element elementFromPoint(int x, int y); | 121 Element elementFromPoint(int x, int y); |
122 | 122 |
123 XPathResult evaluate(String expression, Node contextNode, XPathNSResolver reso
lver, int type, XPathResult inResult); | 123 XPathResult evaluate(String expression, Node contextNode, XPathNSResolver reso
lver, int type, XPathResult inResult); |
124 | 124 |
125 bool execCommand(String command, bool userInterface, String value); | 125 bool execCommand(String command, bool userInterface, String value); |
126 | 126 |
127 Object getCSSCanvasContext(String contextId, String name, int width, int heigh
t); | 127 CanvasRenderingContext getCSSCanvasContext(String contextId, String name, int
width, int height); |
128 | 128 |
129 Element getElementById(String elementId); | 129 Element getElementById(String elementId); |
130 | 130 |
131 NodeList getElementsByClassName(String tagname); | 131 NodeList getElementsByClassName(String tagname); |
132 | 132 |
133 NodeList getElementsByName(String elementName); | 133 NodeList getElementsByName(String elementName); |
134 | 134 |
135 NodeList getElementsByTagName(String tagname); | 135 NodeList getElementsByTagName(String tagname); |
136 | 136 |
137 NodeList getElementsByTagNameNS(String namespaceURI, String localName); | 137 NodeList getElementsByTagNameNS(String namespaceURI, String localName); |
(...skipping 15 matching lines...) Expand all Loading... |
153 String queryCommandValue(String command); | 153 String queryCommandValue(String command); |
154 | 154 |
155 Element querySelector(String selectors); | 155 Element querySelector(String selectors); |
156 | 156 |
157 NodeList querySelectorAll(String selectors); | 157 NodeList querySelectorAll(String selectors); |
158 | 158 |
159 void webkitCancelFullScreen(); | 159 void webkitCancelFullScreen(); |
160 | 160 |
161 WebKitNamedFlow webkitGetFlowByName(String name); | 161 WebKitNamedFlow webkitGetFlowByName(String name); |
162 } | 162 } |
OLD | NEW |