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

Unified Diff: sdk/lib/html/templates/html/impl/impl_SvgElement.darttemplate

Issue 11416294: Changing template file names to key off of the DOM name rather than Dart name. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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: sdk/lib/html/templates/html/impl/impl_SvgElement.darttemplate
diff --git a/sdk/lib/html/templates/html/impl/impl_SvgElement.darttemplate b/sdk/lib/html/templates/html/impl/impl_SvgElement.darttemplate
deleted file mode 100644
index df0ed3bdbb78a04a2671639a943d778728ce1171..0000000000000000000000000000000000000000
--- a/sdk/lib/html/templates/html/impl/impl_SvgElement.darttemplate
+++ /dev/null
@@ -1,88 +0,0 @@
-// Copyright (c) 2011, 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.
-
-part of svg;
-
-class _AttributeClassSet extends CssClassSet {
- final Element _element;
-
- _AttributeClassSet(this._element);
-
- Set<String> readClasses() {
- var classname = _element.attributes['class'];
-
- Set<String> s = new Set<String>();
- if (classname == null) {
- return s;
- }
- for (String name in classname.split(' ')) {
- String trimmed = name.trim();
- if (!trimmed.isEmpty) {
- s.add(trimmed);
- }
- }
- return s;
- }
-
- void writeClasses(Set s) {
- List list = new List.from(s);
- _element.attributes['class'] = Strings.join(list, ' ');
- }
-}
-
-/// @domName $DOMNAME
-class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
- factory $CLASSNAME.tag(String tag) =>
- _$(CLASSNAME)FactoryProvider.create$(CLASSNAME)_tag(tag);
- factory $CLASSNAME.svg(String svg) =>
- _$(CLASSNAME)FactoryProvider.create$(CLASSNAME)_svg(svg);
-
- _AttributeClassSet _cssClassSet;
- CssClassSet get classes {
- if (_cssClassSet == null) {
- _cssClassSet = new _AttributeClassSet(this);
- }
- return _cssClassSet;
- }
-
- List<Element> get elements => new FilteredElementList(this);
-
- void set elements(Collection<Element> value) {
- final elements = this.elements;
- elements.clear();
- elements.addAll(value);
- }
-
- List<Element> get children => new FilteredElementList(this);
-
- void set children(Collection<Element> value) {
- final children = this.children;
- children.clear();
- children.addAll(value);
- }
-
- String get outerHtml {
- final container = new Element.tag("div");
- final SvgElement cloned = this.clone(true);
- container.children.add(cloned);
- return container.innerHtml;
- }
-
- String get innerHtml {
- final container = new Element.tag("div");
- final SvgElement cloned = this.clone(true);
- container.children.addAll(cloned.children);
- return container.innerHtml;
- }
-
- void set innerHtml(String svg) {
- final container = new Element.tag("div");
- // Wrap the SVG string in <svg> so that SvgElements are created, rather than
- // HTMLElements.
- container.innerHtml = '<svg version="1.1">$svg</svg>';
- this.children = container.children[0].children;
- }
-
-$!MEMBERS
-}

Powered by Google App Engine
This is Rietveld 408576698