| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |