| OLD | NEW |
| (Empty) |
| 1 /** | |
| 2 * Scalable Vector Graphics: | |
| 3 * Two-dimensional vector graphics with support for events and animation. | |
| 4 * | |
| 5 * For details about the features and syntax of SVG, a W3C standard, | |
| 6 * refer to the | |
| 7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). | |
| 8 */ | |
| 9 library dart.dom.svg; | |
| 10 | |
| 11 import 'dart:async'; | |
| 12 import 'dart:collection'; | |
| 13 import 'dart:_internal'; | |
| 14 import 'dart:html'; | |
| 15 import 'dart:html_common'; | |
| 16 import 'dart:_js_helper' show Creates, Returns, JSName, Native; | |
| 17 import 'dart:_foreign_helper' show JS; | |
| 18 import 'dart:_interceptors' show Interceptor; | |
| 19 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 20 // for details. All rights reserved. Use of this source code is governed by a | |
| 21 // BSD-style license that can be found in the LICENSE file. | |
| 22 | |
| 23 | |
| 24 class _SvgElementFactoryProvider { | |
| 25 static SvgElement createSvgElement_tag(String tag) { | |
| 26 final Element temp = | |
| 27 document.createElementNS("http://www.w3.org/2000/svg", tag); | |
| 28 return temp; | |
| 29 } | |
| 30 } | |
| 31 // DO NOT EDIT - unless you are editing documentation as per: | |
| 32 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation | |
| 33 // Auto-generated dart:svg library. | |
| 34 | |
| 35 | |
| 36 | |
| 37 | |
| 38 | |
| 39 // FIXME: Can we make this private? | |
| 40 final svgBlinkMap = { | |
| 41 | |
| 42 }; | |
| 43 | |
| 44 // FIXME: Can we make this private? | |
| 45 final svgBlinkFunctionMap = { | |
| 46 | |
| 47 }; | |
| OLD | NEW |