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

Side by Side Diff: tool/input_sdk/lib/svg/ddc/svg_ddc.dart

Issue 1700153002: Wrapperless dart:html and friends (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: A couple more tweaks Created 4 years, 10 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
OLDNEW
(Empty)
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 */
9 library dart.dom.svg;
10
11 import 'dart:async';
12 import 'dart:collection';
13 import 'dart:_internal';
14 import 'dart:html';
15 import 'dart:html_common';
16 import 'dart:_js_helper' show Creates, Returns, JSName, Native;
17 import 'dart:_foreign_helper' show JS;
18 import 'dart:_interceptors' show Interceptor;
19 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
20 // for details. All rights reserved. Use of this source code is governed by a
21 // BSD-style license that can be found in the LICENSE file.
22
23
24 class _SvgElementFactoryProvider {
25 static SvgElement createSvgElement_tag(String tag) {
26 final Element temp =
27 document.createElementNS("http://www.w3.org/2000/svg", tag);
28 return temp;
29 }
30 }
31 // DO NOT EDIT - unless you are editing documentation as per:
32 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation
33 // Auto-generated dart:svg library.
34
35
36
37
38
39 // FIXME: Can we make this private?
40 final svgBlinkMap = {
41
42 };
43
44 // FIXME: Can we make this private?
45 final svgBlinkFunctionMap = {
46
47 };
OLDNEW
« no previous file with comments | « tool/input_sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | tool/input_sdk/lib/web_audio/dart2js/web_audio_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698