| OLD | NEW |
| 1 #library('dom'); | 1 #library('dom'); |
| 2 | 2 |
| 3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4 // for details. All rights reserved. Use of this source code is governed by a | 4 // for details. All rights reserved. Use of this source code is governed by a |
| 5 // BSD-style license that can be found in the LICENSE file. | 5 // BSD-style license that can be found in the LICENSE file. |
| 6 | 6 |
| 7 // DO NOT EDIT | 7 // DO NOT EDIT |
| 8 // Auto-generated Dart DOM library with no implementation. | 8 // Auto-generated Dart DOM library with no implementation. |
| 9 | 9 |
| 10 | 10 |
| (...skipping 1256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1267 // WARNING: Do not edit - generated code. | 1267 // WARNING: Do not edit - generated code. |
| 1268 | 1268 |
| 1269 interface Console { | 1269 interface Console { |
| 1270 | 1270 |
| 1271 final MemoryInfo memory; | 1271 final MemoryInfo memory; |
| 1272 | 1272 |
| 1273 final List<ScriptProfile> profiles; | 1273 final List<ScriptProfile> profiles; |
| 1274 | 1274 |
| 1275 void assertCondition(bool condition, Object arg); | 1275 void assertCondition(bool condition, Object arg); |
| 1276 | 1276 |
| 1277 void count(); | 1277 void count(Object arg); |
| 1278 | 1278 |
| 1279 void debug(Object arg); | 1279 void debug(Object arg); |
| 1280 | 1280 |
| 1281 void dir(); | 1281 void dir(Object arg); |
| 1282 | 1282 |
| 1283 void dirxml(); | 1283 void dirxml(Object arg); |
| 1284 | 1284 |
| 1285 void error(Object arg); | 1285 void error(Object arg); |
| 1286 | 1286 |
| 1287 void group(Object arg); | 1287 void group(Object arg); |
| 1288 | 1288 |
| 1289 void groupCollapsed(Object arg); | 1289 void groupCollapsed(Object arg); |
| 1290 | 1290 |
| 1291 void groupEnd(); | 1291 void groupEnd(); |
| 1292 | 1292 |
| 1293 void info(Object arg); | 1293 void info(Object arg); |
| 1294 | 1294 |
| 1295 void log(Object arg); | 1295 void log(Object arg); |
| 1296 | 1296 |
| 1297 void markTimeline(); | 1297 void markTimeline(Object arg); |
| 1298 | 1298 |
| 1299 void profile(String title); | 1299 void profile(String title); |
| 1300 | 1300 |
| 1301 void profileEnd(String title); | 1301 void profileEnd(String title); |
| 1302 | 1302 |
| 1303 void time(String title); | 1303 void time(String title); |
| 1304 | 1304 |
| 1305 void timeEnd(String title, Object arg); | 1305 void timeEnd(String title, Object arg); |
| 1306 | 1306 |
| 1307 void timeStamp(Object arg); | 1307 void timeStamp(Object arg); |
| (...skipping 11738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13046 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 13046 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 13047 // for details. All rights reserved. Use of this source code is governed by a | 13047 // for details. All rights reserved. Use of this source code is governed by a |
| 13048 // BSD-style license that can be found in the LICENSE file. | 13048 // BSD-style license that can be found in the LICENSE file. |
| 13049 | 13049 |
| 13050 Window get window() => _dummy(); | 13050 Window get window() => _dummy(); |
| 13051 | 13051 |
| 13052 // TODO(vsm): Remove when prefixes are supported. | 13052 // TODO(vsm): Remove when prefixes are supported. |
| 13053 Window get dom_window() => _dummy(); | 13053 Window get dom_window() => _dummy(); |
| 13054 | 13054 |
| 13055 Document get document() => _dummy(); | 13055 Document get document() => _dummy(); |
| OLD | NEW |