| 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 /** | 8 /** |
| 9 * HTML elements and other resources for web-based applications that need to | 9 * HTML elements and other resources for web-based applications that need to |
| 10 * interact with the browser and the DOM (Document Object Model). | 10 * interact with the browser and the DOM (Document Object Model). |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 part '$AUXILIARY_DIR/Validators.dart'; | 82 part '$AUXILIARY_DIR/Validators.dart'; |
| 83 part '$AUXILIARY_DIR/WrappedList.dart'; | 83 part '$AUXILIARY_DIR/WrappedList.dart'; |
| 84 part '$AUXILIARY_DIR/_HttpRequestUtils.dart'; | 84 part '$AUXILIARY_DIR/_HttpRequestUtils.dart'; |
| 85 part '$AUXILIARY_DIR/_ListIterators.dart'; | 85 part '$AUXILIARY_DIR/_ListIterators.dart'; |
| 86 part '$AUXILIARY_DIR/dartium_CustomElementSupport.dart'; | 86 part '$AUXILIARY_DIR/dartium_CustomElementSupport.dart'; |
| 87 part '$AUXILIARY_DIR/dartium_KeyEvent.dart'; | 87 part '$AUXILIARY_DIR/dartium_KeyEvent.dart'; |
| 88 part '$AUXILIARY_DIR/dartium_Platform.dart'; | 88 part '$AUXILIARY_DIR/dartium_Platform.dart'; |
| 89 part '$AUXILIARY_DIR/dartium_WrappedEvent.dart'; | 89 part '$AUXILIARY_DIR/dartium_WrappedEvent.dart'; |
| 90 part '$AUXILIARY_DIR/shared_html.dart'; | 90 part '$AUXILIARY_DIR/shared_html.dart'; |
| 91 | 91 |
| 92 part '$AUXILIARY_DIR/html_native_DOMImplementation.dart'; | 92 part '$AUXILIARY_DIR/native_DOMImplementation.dart'; |
| 93 | 93 |
| 94 Window _window; | 94 Window _window; |
| 95 | 95 |
| 96 /** | 96 /** |
| 97 * Top-level container for a web page, which is usually a browser tab or window. | 97 * Top-level container for a web page, which is usually a browser tab or window. |
| 98 * | 98 * |
| 99 * Each web page loaded in the browser has its own [Window], which is a | 99 * Each web page loaded in the browser has its own [Window], which is a |
| 100 * container for the web page. | 100 * container for the web page. |
| 101 * | 101 * |
| 102 * If the web page has any `<iframe>` elements, then each `<iframe>` has its own | 102 * If the web page has any `<iframe>` elements, then each `<iframe>` has its own |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 } | 231 } |
| 232 return null; | 232 return null; |
| 233 } | 233 } |
| 234 | 234 |
| 235 Type _getSvgType(String key) { | 235 Type _getSvgType(String key) { |
| 236 if (svgBlinkMap.containsKey(key)) { | 236 if (svgBlinkMap.containsKey(key)) { |
| 237 return svgBlinkMap[key](); | 237 return svgBlinkMap[key](); |
| 238 } | 238 } |
| 239 return null; | 239 return null; |
| 240 } | 240 } |
| OLD | NEW |