Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(817)

Side by Side Diff: sdk/lib/svg/dart2js/svg_dart2js.dart

Issue 23866005: Edited one-liner for SVG. Also regenerated indexeddb doc and httprequest. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fixed typo Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | tools/dom/templates/html/dart2js/svg_dart2js.darttemplate » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 */
1 library dart.dom.svg; 9 library dart.dom.svg;
2 10
3 import 'dart:async'; 11 import 'dart:async';
4 import 'dart:collection'; 12 import 'dart:collection';
5 import 'dart:_collection-dev' hide deprecated; 13 import 'dart:_collection-dev' hide deprecated;
6 import 'dart:html'; 14 import 'dart:html';
7 import 'dart:html_common'; 15 import 'dart:html_common';
8 import 'dart:_js_helper' show Creates, Returns, JSName; 16 import 'dart:_js_helper' show Creates, Returns, JSName;
9 import 'dart:_foreign_helper' show JS; 17 import 'dart:_foreign_helper' show JS;
10 import 'dart:_interceptors' show Interceptor; 18 import 'dart:_interceptors' show Interceptor;
(...skipping 6179 matching lines...) Expand 10 before | Expand all | Expand 10 after
6190 @DomName('SVGVKernElement') 6198 @DomName('SVGVKernElement')
6191 @Unstable() 6199 @Unstable()
6192 abstract class _SVGVKernElement extends SvgElement native "SVGVKernElement" { 6200 abstract class _SVGVKernElement extends SvgElement native "SVGVKernElement" {
6193 // To suppress missing implicit constructor warnings. 6201 // To suppress missing implicit constructor warnings.
6194 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); } 6202 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); }
6195 6203
6196 @DomName('SVGVKernElement.SVGVKernElement') 6204 @DomName('SVGVKernElement.SVGVKernElement')
6197 @DocsEditable() 6205 @DocsEditable()
6198 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 6206 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
6199 } 6207 }
OLDNEW
« no previous file with comments | « no previous file | tools/dom/templates/html/dart2js/svg_dart2js.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698