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:html'; | 5 import 'dart:html'; |
6 import 'dart:html_common'; | 6 import 'dart:html_common'; |
7 import 'dart:_js_helper' show Creates, Returns, JavaScriptIndexingBehavior, JSNa
me; | 7 import 'dart:_js_helper' show Creates, Returns, JavaScriptIndexingBehavior, JSNa
me; |
8 import 'dart:_foreign_helper' show JS; | 8 import 'dart:_foreign_helper' show JS; |
9 // DO NOT EDIT - unless you are editing documentation as per: | 9 // DO NOT EDIT - unless you are editing documentation as per: |
10 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation | 10 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation |
(...skipping 7422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7433 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 7433 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
7434 // for details. All rights reserved. Use of this source code is governed by a | 7434 // for details. All rights reserved. Use of this source code is governed by a |
7435 // BSD-style license that can be found in the LICENSE file. | 7435 // BSD-style license that can be found in the LICENSE file. |
7436 | 7436 |
7437 | 7437 |
7438 // Hack because the baseclass is private in dart:html, and we want to omit this | 7438 // Hack because the baseclass is private in dart:html, and we want to omit this |
7439 // type entirely but can't. | 7439 // type entirely but can't. |
7440 @DocsEditable | 7440 @DocsEditable |
7441 @DomName('SVGColor') | 7441 @DomName('SVGColor') |
7442 class _SVGColor native "*SVGColor" { | 7442 class _SVGColor native "*SVGColor" { |
| 7443 _SVGColor.internal(); |
7443 } | 7444 } |
7444 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7445 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
7445 // for details. All rights reserved. Use of this source code is governed by a | 7446 // for details. All rights reserved. Use of this source code is governed by a |
7446 // BSD-style license that can be found in the LICENSE file. | 7447 // BSD-style license that can be found in the LICENSE file. |
7447 | 7448 |
7448 | 7449 |
7449 @DocsEditable | 7450 @DocsEditable |
7450 @DomName('SVGComponentTransferFunctionElement') | 7451 @DomName('SVGComponentTransferFunctionElement') |
7451 abstract class _SVGComponentTransferFunctionElement extends SvgElement native "*
SVGComponentTransferFunctionElement" { | 7452 abstract class _SVGComponentTransferFunctionElement extends SvgElement native "*
SVGComponentTransferFunctionElement" { |
7452 } | 7453 } |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7630 | 7631 |
7631 | 7632 |
7632 @DocsEditable | 7633 @DocsEditable |
7633 @DomName('SVGVKernElement') | 7634 @DomName('SVGVKernElement') |
7634 abstract class _SVGVKernElement extends SvgElement native "*SVGVKernElement" { | 7635 abstract class _SVGVKernElement extends SvgElement native "*SVGVKernElement" { |
7635 | 7636 |
7636 @DomName('SVGVKernElement.SVGVKernElement') | 7637 @DomName('SVGVKernElement.SVGVKernElement') |
7637 @DocsEditable | 7638 @DocsEditable |
7638 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); | 7639 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); |
7639 } | 7640 } |
OLD | NEW |