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

Unified Diff: tool/input_sdk/lib/svg/ddc/svg_ddc.dart

Issue 1616263005: Add CustomEvent (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Rgen Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: tool/input_sdk/lib/svg/ddc/svg_ddc.dart
diff --git a/tool/input_sdk/lib/svg/ddc/svg_ddc.dart b/tool/input_sdk/lib/svg/ddc/svg_ddc.dart
new file mode 100644
index 0000000000000000000000000000000000000000..b15ca47ae30170d45f942f5aa7b8658a86afeb46
--- /dev/null
+++ b/tool/input_sdk/lib/svg/ddc/svg_ddc.dart
@@ -0,0 +1,47 @@
+/**
+ * Scalable Vector Graphics:
+ * Two-dimensional vector graphics with support for events and animation.
+ *
+ * For details about the features and syntax of SVG, a W3C standard,
+ * refer to the
+ * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/).
+ */
+library dart.dom.svg;
+
+import 'dart:async';
+import 'dart:collection';
+import 'dart:_internal';
+import 'dart:html';
+import 'dart:html_common';
+import 'dart:_js_helper' show Creates, Returns, JSName, Native;
+import 'dart:_foreign_helper' show JS;
+import 'dart:_interceptors' show Interceptor;
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+
+class _SvgElementFactoryProvider {
+ static SvgElement createSvgElement_tag(String tag) {
+ final Element temp =
+ document.createElementNS("http://www.w3.org/2000/svg", tag);
+ return temp;
+ }
+}
+// DO NOT EDIT - unless you are editing documentation as per:
+// https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation
+// Auto-generated dart:svg library.
+
+
+
+
+
+// FIXME: Can we make this private?
+final svgBlinkMap = {
+
+};
+
+// FIXME: Can we make this private?
+final svgBlinkFunctionMap = {
+
+};
« no previous file with comments | « tool/input_sdk/lib/indexed_db/ddc/indexed_db_ddc.dart ('k') | tool/input_sdk/lib/web_audio/ddc/web_audio_ddc.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698