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

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

Issue 8895013: Add enables consistent with Chrome's WebKit (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Alpha the ENABLEs Created 9 years 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 | « client/dom/generated/src/frog/DOMWindow.dart ('k') | client/dom/generated/src/frog/File.dart » ('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 class Document extends Node native "Document" { 2 class Document extends Node native "Document" {
3 3
4 String URL; 4 String URL;
5 5
6 HTMLCollection anchors; 6 HTMLCollection anchors;
7 7
8 HTMLCollection applets; 8 HTMLCollection applets;
9 9
10 HTMLElement body; 10 HTMLElement body;
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 XPathNSResolver createNSResolver(Node nodeResolver) native; 100 XPathNSResolver createNSResolver(Node nodeResolver) native;
101 101
102 NodeIterator createNodeIterator(Node root, int whatToShow, NodeFilter filter, bool expandEntityReferences) native; 102 NodeIterator createNodeIterator(Node root, int whatToShow, NodeFilter filter, bool expandEntityReferences) native;
103 103
104 ProcessingInstruction createProcessingInstruction(String target, String data) native; 104 ProcessingInstruction createProcessingInstruction(String target, String data) native;
105 105
106 Range createRange() native; 106 Range createRange() native;
107 107
108 Text createTextNode(String data) native; 108 Text createTextNode(String data) native;
109 109
110 Touch createTouch(DOMWindow window, EventTarget target, int identifier, int pa geX, int pageY, int screenX, int screenY, int webkitRadiusX, int webkitRadiusY, num webkitRotationAngle, num webkitForce) native;
111
112 TouchList createTouchList() native;
113
110 TreeWalker createTreeWalker(Node root, int whatToShow, NodeFilter filter, bool expandEntityReferences) native; 114 TreeWalker createTreeWalker(Node root, int whatToShow, NodeFilter filter, bool expandEntityReferences) native;
111 115
112 Element elementFromPoint(int x, int y) native; 116 Element elementFromPoint(int x, int y) native;
113 117
114 XPathResult evaluate(String expression, Node contextNode, XPathNSResolver reso lver, int type, XPathResult inResult) native; 118 XPathResult evaluate(String expression, Node contextNode, XPathNSResolver reso lver, int type, XPathResult inResult) native;
115 119
116 bool execCommand(String command, bool userInterface, String value) native; 120 bool execCommand(String command, bool userInterface, String value) native;
117 121
118 Object getCSSCanvasContext(String contextId, String name, int width, int heigh t) native; 122 Object getCSSCanvasContext(String contextId, String name, int width, int heigh t) native;
119 123
(...skipping 22 matching lines...) Expand all
142 bool queryCommandSupported(String command) native; 146 bool queryCommandSupported(String command) native;
143 147
144 String queryCommandValue(String command) native; 148 String queryCommandValue(String command) native;
145 149
146 Element querySelector(String selectors) native; 150 Element querySelector(String selectors) native;
147 151
148 NodeList querySelectorAll(String selectors) native; 152 NodeList querySelectorAll(String selectors) native;
149 153
150 void webkitCancelFullScreen() native; 154 void webkitCancelFullScreen() native;
151 } 155 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/DOMWindow.dart ('k') | client/dom/generated/src/frog/File.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698