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:_internal' hide deprecated; | 5 import 'dart:_internal' hide deprecated; |
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 import 'dart:_blink' as _blink; | 9 import 'dart:_blink' as _blink; |
10 // DO NOT EDIT | 10 // DO NOT EDIT |
(...skipping 5480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5491 } | 5491 } |
5492 | 5492 |
5493 // Unsupported methods inherited from Element. | 5493 // Unsupported methods inherited from Element. |
5494 | 5494 |
5495 @DomName('Element.insertAdjacentText') | 5495 @DomName('Element.insertAdjacentText') |
5496 void insertAdjacentText(String where, String text) { | 5496 void insertAdjacentText(String where, String text) { |
5497 throw new UnsupportedError("Cannot invoke insertAdjacentText on SVG."); | 5497 throw new UnsupportedError("Cannot invoke insertAdjacentText on SVG."); |
5498 } | 5498 } |
5499 | 5499 |
5500 @DomName('Element.insertAdjacentHTML') | 5500 @DomName('Element.insertAdjacentHTML') |
5501 void insertAdjacentHtml(String where, String text, {NodeValidator validator, | 5501 void insertAdjacentHtml(String where, String text) { |
5502 NodeTreeSanitizer treeSanitizer}) { | |
5503 throw new UnsupportedError("Cannot invoke insertAdjacentHtml on SVG."); | 5502 throw new UnsupportedError("Cannot invoke insertAdjacentHtml on SVG."); |
5504 } | 5503 } |
5505 | 5504 |
5506 @DomName('Element.insertAdjacentElement') | 5505 @DomName('Element.insertAdjacentHTML') |
5507 Element insertAdjacentElement(String where, Element element) { | 5506 Element insertAdjacentElement(String where, Element element) { |
5508 throw new UnsupportedError("Cannot invoke insertAdjacentElement on SVG."); | 5507 throw new UnsupportedError("Cannot invoke insertAdjacentElement on SVG."); |
5509 } | 5508 } |
5510 | 5509 |
5511 HtmlCollection get _children { | 5510 HtmlCollection get _children { |
5512 throw new UnsupportedError("Cannot get _children on SVG."); | 5511 throw new UnsupportedError("Cannot get _children on SVG."); |
5513 } | 5512 } |
5514 | 5513 |
5515 bool get isContentEditable => false; | 5514 bool get isContentEditable => false; |
5516 void click() { | 5515 void click() { |
(...skipping 2005 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7522 @DocsEditable() | 7521 @DocsEditable() |
7523 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); | 7522 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag(
"vkern"); |
7524 /** | 7523 /** |
7525 * Constructor instantiated by the DOM when a custom element has been created. | 7524 * Constructor instantiated by the DOM when a custom element has been created. |
7526 * | 7525 * |
7527 * This can only be called by subclasses from their created constructor. | 7526 * This can only be called by subclasses from their created constructor. |
7528 */ | 7527 */ |
7529 _SVGVKernElement.created() : super.created(); | 7528 _SVGVKernElement.created() : super.created(); |
7530 | 7529 |
7531 } | 7530 } |
OLD | NEW |