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

Side by Side Diff: lib/html/src/shared_FactoryProviders.dart

Issue 11036024: Revert r13127. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 class _CustomEventFactoryProvider {
6 static CustomEvent createCustomEvent(String type, [bool canBubble = true,
7 bool cancelable = true, Object detail = null]) {
8 final _CustomEventImpl e = _document.$dom_createEvent("CustomEvent");
9 e.$dom_initCustomEvent(type, canBubble, cancelable, detail);
10 return e;
11 }
12 }
13
14 class _EventFactoryProvider { 5 class _EventFactoryProvider {
15 static Event createEvent(String type, [bool canBubble = true, 6 static Event createEvent(String type, [bool canBubble = true,
16 bool cancelable = true]) { 7 bool cancelable = true]) {
17 final _EventImpl e = _document.$dom_createEvent("Event"); 8 final _EventImpl e = _document.$dom_createEvent("Event");
18 e.$dom_initEvent(type, canBubble, cancelable); 9 e.$dom_initEvent(type, canBubble, cancelable);
19 return e; 10 return e;
20 } 11 }
21 } 12 }
22 13
23 class _MouseEventFactoryProvider { 14 class _MouseEventFactoryProvider {
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 } 98 }
108 99
109 class _SVGSVGElementFactoryProvider { 100 class _SVGSVGElementFactoryProvider {
110 static SVGSVGElement createSVGSVGElement() { 101 static SVGSVGElement createSVGSVGElement() {
111 final el = new SVGElement.tag("svg"); 102 final el = new SVGElement.tag("svg");
112 // The SVG spec requires the version attribute to match the spec version 103 // The SVG spec requires the version attribute to match the spec version
113 el.attributes['version'] = "1.1"; 104 el.attributes['version'] = "1.1";
114 return el; 105 return el;
115 } 106 }
116 } 107 }
OLDNEW
« no previous file with comments | « lib/html/scripts/htmlrenamer.py ('k') | lib/html/templates/html/interface/interface_CustomEvent.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698