| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 String get URL(); | 9 String get URL(); |
| 10 | 10 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 String get selectedStylesheetSet(); | 71 String get selectedStylesheetSet(); |
| 72 | 72 |
| 73 void set selectedStylesheetSet(String value); | 73 void set selectedStylesheetSet(String value); |
| 74 | 74 |
| 75 StyleSheetList get styleSheets(); | 75 StyleSheetList get styleSheets(); |
| 76 | 76 |
| 77 String get title(); | 77 String get title(); |
| 78 | 78 |
| 79 void set title(String value); | 79 void set title(String value); |
| 80 | 80 |
| 81 Element get webkitCurrentFullScreenElement(); |
| 82 |
| 83 bool get webkitFullScreenKeyboardInputAllowed(); |
| 84 |
| 81 bool get webkitHidden(); | 85 bool get webkitHidden(); |
| 82 | 86 |
| 87 bool get webkitIsFullScreen(); |
| 88 |
| 83 String get webkitVisibilityState(); | 89 String get webkitVisibilityState(); |
| 84 | 90 |
| 85 String get xmlEncoding(); | 91 String get xmlEncoding(); |
| 86 | 92 |
| 87 bool get xmlStandalone(); | 93 bool get xmlStandalone(); |
| 88 | 94 |
| 89 void set xmlStandalone(bool value); | 95 void set xmlStandalone(bool value); |
| 90 | 96 |
| 91 String get xmlVersion(); | 97 String get xmlVersion(); |
| 92 | 98 |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 | 164 |
| 159 bool queryCommandState(String command); | 165 bool queryCommandState(String command); |
| 160 | 166 |
| 161 bool queryCommandSupported(String command); | 167 bool queryCommandSupported(String command); |
| 162 | 168 |
| 163 String queryCommandValue(String command); | 169 String queryCommandValue(String command); |
| 164 | 170 |
| 165 Element querySelector(String selectors); | 171 Element querySelector(String selectors); |
| 166 | 172 |
| 167 NodeList querySelectorAll(String selectors); | 173 NodeList querySelectorAll(String selectors); |
| 174 |
| 175 void webkitCancelFullScreen(); |
| 168 } | 176 } |
| OLD | NEW |