| 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; |
| 11 | 11 |
| 12 String characterSet; | 12 String characterSet; |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 bool queryCommandState(String command) native; | 226 bool queryCommandState(String command) native; |
| 227 | 227 |
| 228 bool queryCommandSupported(String command) native; | 228 bool queryCommandSupported(String command) native; |
| 229 | 229 |
| 230 String queryCommandValue(String command) native; | 230 String queryCommandValue(String command) native; |
| 231 | 231 |
| 232 Element querySelector(String selectors) native; | 232 Element querySelector(String selectors) native; |
| 233 | 233 |
| 234 NodeList querySelectorAll(String selectors) native; | 234 NodeList querySelectorAll(String selectors) native; |
| 235 } | 235 } |
| OLD | NEW |