| 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 // DO NOT EDIT | 5 // DO NOT EDIT |
| 6 // Auto-generated dart:html library. | 6 // Auto-generated dart:html library. |
| 7 | 7 |
| 8 #library("html"); | 8 #library("html"); |
| 9 | 9 |
| 10 $!GENERATED_DART_FILES | 10 $!GENERATED_DART_FILES |
| 11 | 11 |
| 12 #source('../dom/src/EventListener.dart'); | 12 #source('../dom/src/EventListener.dart'); |
| 13 #source('../dom/src/KeyLocation.dart'); | 13 #source('../dom/src/KeyLocation.dart'); |
| 14 #source('../dom/src/KeyName.dart'); | 14 #source('../dom/src/KeyName.dart'); |
| 15 #source('../dom/src/ReadyState.dart'); | 15 #source('../dom/src/ReadyState.dart'); |
| 16 #source('../dom/src/TimeoutHandler.dart'); | 16 #source('../dom/src/TimeoutHandler.dart'); |
| 17 #source('../dom/src/_Collections.dart'); | 17 #source('../dom/src/_Collections.dart'); |
| 18 #source('../dom/src/_XMLHttpRequestUtils.dart'); |
| 18 #source('../html/src/Measurement.dart'); | 19 #source('../html/src/Measurement.dart'); |
| 19 #source('../html/src/shared_FactoryProviders.dart'); | 20 #source('../html/src/shared_FactoryProviders.dart'); |
| 20 #source('../html/src/frog_FactoryProviders.dart'); | 21 #source('../html/src/frog_FactoryProviders.dart'); |
| 21 #source('../html/src/_Testing.dart'); | 22 #source('../html/src/_Testing.dart'); |
| 22 #source('../html/src/Device.dart'); | 23 #source('../html/src/Device.dart'); |
| 23 #source('../dom/src/_ListIterators.dart'); | 24 #source('../dom/src/_ListIterators.dart'); |
| 24 #source('../dom/src/_Lists.dart'); | 25 #source('../dom/src/_Lists.dart'); |
| 25 | 26 |
| 26 _WindowImpl _cachedWindow; | 27 _WindowImpl _cachedWindow; |
| 27 _DocumentImpl _cachedDocument; | 28 _DocumentImpl _cachedDocument; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 _init(); | 60 _init(); |
| 60 } | 61 } |
| 61 return _cachedDocument; | 62 return _cachedDocument; |
| 62 } | 63 } |
| 63 | 64 |
| 64 _DocumentImpl get _document() native "return window.document.documentElement;"; | 65 _DocumentImpl get _document() native "return window.document.documentElement;"; |
| 65 | 66 |
| 66 // Workaround for tags like <cite> that lack their own Element subclass -- | 67 // Workaround for tags like <cite> that lack their own Element subclass -- |
| 67 // Dart issue 1990. | 68 // Dart issue 1990. |
| 68 class _HTMLElementImpl extends _ElementImpl native "*HTMLElement" { | 69 class _HTMLElementImpl extends _ElementImpl native "*HTMLElement" { |
| 69 } | 70 } |
| OLD | NEW |