| OLD | NEW |
| 1 library dart.dom.svg; | 1 library dart.dom.svg; |
| 2 | 2 |
| 3 import 'dart:async'; | 3 import 'dart:async'; |
| 4 import 'dart:collection'; | 4 import 'dart:collection'; |
| 5 import 'dart:_collection-dev'; | 5 import 'dart:_collection-dev'; |
| 6 import 'dart:html'; | 6 import 'dart:html'; |
| 7 import 'dart:html_common'; | 7 import 'dart:html_common'; |
| 8 import 'dart:_js_helper' show Creates, Returns, JavaScriptIndexingBehavior, JSNa
me; | 8 import 'dart:_js_helper' show Creates, Returns, JavaScriptIndexingBehavior, JSNa
me; |
| 9 import 'dart:_foreign_helper' show JS; | 9 import 'dart:_foreign_helper' show JS; |
| 10 // DO NOT EDIT - unless you are editing documentation as per: | 10 // DO NOT EDIT - unless you are editing documentation as per: |
| (...skipping 5702 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5713 | 5713 |
| 5714 @DocsEditable | 5714 @DocsEditable |
| 5715 @DomName('SVGStyledElement') | 5715 @DomName('SVGStyledElement') |
| 5716 class StyledElement extends SvgElement native "SVGStyledElement" { | 5716 class StyledElement extends SvgElement native "SVGStyledElement" { |
| 5717 | 5717 |
| 5718 // Shadowing definition. | 5718 // Shadowing definition. |
| 5719 AnimatedString get $dom_svgClassName => JS("AnimatedString", "#.className", th
is); | 5719 AnimatedString get $dom_svgClassName => JS("AnimatedString", "#.className", th
is); |
| 5720 | 5720 |
| 5721 // Use implementation from Element. | 5721 // Use implementation from Element. |
| 5722 // final CssStyleDeclaration style; | 5722 // final CssStyleDeclaration style; |
| 5723 |
| 5724 @DomName('SVGStyledElement.getPresentationAttribute') |
| 5725 @DocsEditable |
| 5726 _CSSValue getPresentationAttribute(String name) native; |
| 5723 } | 5727 } |
| 5724 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5728 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5725 // for details. All rights reserved. Use of this source code is governed by a | 5729 // for details. All rights reserved. Use of this source code is governed by a |
| 5726 // BSD-style license that can be found in the LICENSE file. | 5730 // BSD-style license that can be found in the LICENSE file. |
| 5727 | 5731 |
| 5728 | 5732 |
| 5729 @DocsEditable | 5733 @DocsEditable |
| 5730 @DomName('SVGDocument') | 5734 @DomName('SVGDocument') |
| 5731 class SvgDocument extends Document native "SVGDocument" { | 5735 class SvgDocument extends Document native "SVGDocument" { |
| 5732 | 5736 |
| (...skipping 1893 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7626 | 7630 |
| 7627 | 7631 |
| 7628 @DocsEditable | 7632 @DocsEditable |
| 7629 @DomName('SVGVKernElement') | 7633 @DomName('SVGVKernElement') |
| 7630 abstract class _SVGVKernElement extends SvgElement native "SVGVKernElement" { | 7634 abstract class _SVGVKernElement extends SvgElement native "SVGVKernElement" { |
| 7631 | 7635 |
| 7632 @DomName('SVGVKernElement.SVGVKernElement') | 7636 @DomName('SVGVKernElement.SVGVKernElement') |
| 7633 @DocsEditable | 7637 @DocsEditable |
| 7634 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); | 7638 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); |
| 7635 } | 7639 } |
| OLD | NEW |