Index: client/dom/templates/html/interface/interface_SVGElement.darttemplate |
diff --git a/client/dom/templates/html/interface/interface_SVGElement.darttemplate b/client/dom/templates/html/interface/interface_SVGElement.darttemplate |
new file mode 100644 |
index 0000000000000000000000000000000000000000..bcb8e8f73203062da74421e70c0209a39191552c |
--- /dev/null |
+++ b/client/dom/templates/html/interface/interface_SVGElement.darttemplate |
@@ -0,0 +1,13 @@ |
+// 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. |
+ |
+interface SVGElement extends Element default _$(ID)FactoryProvider { |
+ |
+ SVGElement.tag(String tag); |
+ SVGElement.svg(String svg); |
+ |
+ SVGElement clone(bool deep); |
+ |
+$!MEMBERS |
+} |