| 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:nativewrappers'; | 8 import 'dart:nativewrappers'; |
| 9 // DO NOT EDIT | 9 // DO NOT EDIT |
| 10 // Auto-generated dart:svg library. | 10 // Auto-generated dart:svg library. |
| (...skipping 6467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6478 @DomName('SVGDocument.createEvent') | 6478 @DomName('SVGDocument.createEvent') |
| 6479 @DocsEditable | 6479 @DocsEditable |
| 6480 Event $dom_createEvent(String eventType) native "SVGDocument_createEvent_Callb
ack"; | 6480 Event $dom_createEvent(String eventType) native "SVGDocument_createEvent_Callb
ack"; |
| 6481 | 6481 |
| 6482 } | 6482 } |
| 6483 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 6483 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 6484 // for details. All rights reserved. Use of this source code is governed by a | 6484 // for details. All rights reserved. Use of this source code is governed by a |
| 6485 // BSD-style license that can be found in the LICENSE file. | 6485 // BSD-style license that can be found in the LICENSE file. |
| 6486 | 6486 |
| 6487 | 6487 |
| 6488 class _AttributeClassSet extends CssClassSet { | 6488 class _AttributeClassSet extends CssClassSetImpl { |
| 6489 final Element _element; | 6489 final Element _element; |
| 6490 | 6490 |
| 6491 _AttributeClassSet(this._element); | 6491 _AttributeClassSet(this._element); |
| 6492 | 6492 |
| 6493 Set<String> readClasses() { | 6493 Set<String> readClasses() { |
| 6494 var classname = _element.attributes['class']; | 6494 var classname = _element.attributes['class']; |
| 6495 | 6495 |
| 6496 Set<String> s = new LinkedHashSet<String>(); | 6496 Set<String> s = new LinkedHashSet<String>(); |
| 6497 if (classname == null) { | 6497 if (classname == null) { |
| 6498 return s; | 6498 return s; |
| (...skipping 2043 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8542 @DocsEditable | 8542 @DocsEditable |
| 8543 @DomName('SVGVKernElement') | 8543 @DomName('SVGVKernElement') |
| 8544 abstract class _SVGVKernElement extends SvgElement { | 8544 abstract class _SVGVKernElement extends SvgElement { |
| 8545 _SVGVKernElement.internal() : super.internal(); | 8545 _SVGVKernElement.internal() : super.internal(); |
| 8546 | 8546 |
| 8547 @DomName('SVGVKernElement.SVGVKernElement') | 8547 @DomName('SVGVKernElement.SVGVKernElement') |
| 8548 @DocsEditable | 8548 @DocsEditable |
| 8549 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); | 8549 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); |
| 8550 | 8550 |
| 8551 } | 8551 } |
| OLD | NEW |