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

Side by Side Diff: sdk/lib/svg/dartium/svg_dartium.dart

Issue 14941002: Aggregate CSS manipulation functions in html lib. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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 | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | tests/html/element_classes_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library dart.dom.svg; 1 library dart.dom.svg;
2 2
3 import 'dart:async'; 3 import 'dart:async';
4 import 'dart:collection'; 4 import 'dart:collection';
5 import 'dart:_collection-dev'; 5 import 'dart:_collection-dev';
6 import 'dart:html'; 6 import 'dart:html';
7 import 'dart:html_common'; 7 import 'dart:html_common';
8 import 'dart:nativewrappers'; 8 import 'dart:nativewrappers';
9 // DO NOT EDIT 9 // DO NOT EDIT
10 // Auto-generated dart:svg library. 10 // Auto-generated dart:svg library.
(...skipping 6467 matching lines...) Expand 10 before | Expand all | Expand 10 after
6478 @DomName('SVGDocument.createEvent') 6478 @DomName('SVGDocument.createEvent')
6479 @DocsEditable 6479 @DocsEditable
6480 Event $dom_createEvent(String eventType) native "SVGDocument_createEvent_Callb ack"; 6480 Event $dom_createEvent(String eventType) native "SVGDocument_createEvent_Callb ack";
6481 6481
6482 } 6482 }
6483 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 6483 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
6484 // for details. All rights reserved. Use of this source code is governed by a 6484 // for details. All rights reserved. Use of this source code is governed by a
6485 // BSD-style license that can be found in the LICENSE file. 6485 // BSD-style license that can be found in the LICENSE file.
6486 6486
6487 6487
6488 class _AttributeClassSet extends CssClassSet { 6488 class _AttributeClassSet extends CssClassSetImpl {
6489 final Element _element; 6489 final Element _element;
6490 6490
6491 _AttributeClassSet(this._element); 6491 _AttributeClassSet(this._element);
6492 6492
6493 Set<String> readClasses() { 6493 Set<String> readClasses() {
6494 var classname = _element.attributes['class']; 6494 var classname = _element.attributes['class'];
6495 6495
6496 Set<String> s = new LinkedHashSet<String>(); 6496 Set<String> s = new LinkedHashSet<String>();
6497 if (classname == null) { 6497 if (classname == null) {
6498 return s; 6498 return s;
(...skipping 2043 matching lines...) Expand 10 before | Expand all | Expand 10 after
8542 @DocsEditable 8542 @DocsEditable
8543 @DomName('SVGVKernElement') 8543 @DomName('SVGVKernElement')
8544 abstract class _SVGVKernElement extends SvgElement { 8544 abstract class _SVGVKernElement extends SvgElement {
8545 _SVGVKernElement.internal() : super.internal(); 8545 _SVGVKernElement.internal() : super.internal();
8546 8546
8547 @DomName('SVGVKernElement.SVGVKernElement') 8547 @DomName('SVGVKernElement.SVGVKernElement')
8548 @DocsEditable 8548 @DocsEditable
8549 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 8549 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
8550 8550
8551 } 8551 }
OLDNEW
« no previous file with comments | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | tests/html/element_classes_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698