| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 // Fake dart:html library for documentation. | 5 // Fake dart:html library for documentation. |
| 6 | 6 |
| 7 /// The Dart HTML5 Library. | 7 /// The Dart HTML5 Library. |
| 8 #library("html"); | 8 #library("dart:html"); |
| 9 | 9 |
| 10 #source('interface/AbstractWorker.dartdoc'); | 10 #source('interface/AbstractWorker.dartdoc'); |
| 11 #source('interface/AnchorElement.dartdoc'); | 11 #source('interface/AnchorElement.dartdoc'); |
| 12 #source('interface/Animation.dartdoc'); | 12 #source('interface/Animation.dartdoc'); |
| 13 #source('interface/AnimationEvent.dartdoc'); | 13 #source('interface/AnimationEvent.dartdoc'); |
| 14 #source('interface/AnimationList.dartdoc'); | 14 #source('interface/AnimationList.dartdoc'); |
| 15 #source('interface/AppletElement.dartdoc'); | 15 #source('interface/AppletElement.dartdoc'); |
| 16 #source('interface/AreaElement.dartdoc'); | 16 #source('interface/AreaElement.dartdoc'); |
| 17 #source('interface/ArrayBuffer.dartdoc'); | 17 #source('interface/ArrayBuffer.dartdoc'); |
| 18 #source('interface/ArrayBufferView.dartdoc'); | 18 #source('interface/ArrayBufferView.dartdoc'); |
| (...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 602 * The top-level Window object. | 602 * The top-level Window object. |
| 603 */ | 603 */ |
| 604 Window get window() => null; | 604 Window get window() => null; |
| 605 | 605 |
| 606 /** | 606 /** |
| 607 * The top-level Document object. | 607 * The top-level Document object. |
| 608 */ | 608 */ |
| 609 Document get document() => null; | 609 Document get document() => null; |
| 610 | 610 |
| 611 typedef void EventListener(Event event); | 611 typedef void EventListener(Event event); |
| OLD | NEW |