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

Side by Side Diff: sdk/lib/html/dartium/html_dartium.dart

Issue 13686018: Testing & supporting new HTMLTemplateElement (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/html/dart2js/html_dart2js.dart ('k') | tests/html/element_types_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 /// The Dart HTML library. 1 /// The Dart HTML library.
2 library dart.dom.html; 2 library dart.dom.html;
3 3
4 import 'dart:async'; 4 import 'dart:async';
5 import 'dart:collection'; 5 import 'dart:collection';
6 import 'dart:_collection-dev'; 6 import 'dart:_collection-dev';
7 import 'dart:html_common'; 7 import 'dart:html_common';
8 import 'dart:indexed_db'; 8 import 'dart:indexed_db';
9 import 'dart:isolate'; 9 import 'dart:isolate';
10 import 'dart:json' as json; 10 import 'dart:json' as json;
(...skipping 19804 matching lines...) Expand 10 before | Expand all | Expand 10 after
19815 } 19815 }
19816 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 19816 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
19817 // for details. All rights reserved. Use of this source code is governed by a 19817 // for details. All rights reserved. Use of this source code is governed by a
19818 // BSD-style license that can be found in the LICENSE file. 19818 // BSD-style license that can be found in the LICENSE file.
19819 19819
19820 // WARNING: Do not edit - generated code. 19820 // WARNING: Do not edit - generated code.
19821 19821
19822 19822
19823 @DocsEditable 19823 @DocsEditable
19824 @DomName('HTMLTemplateElement') 19824 @DomName('HTMLTemplateElement')
19825 @SupportedBrowser(SupportedBrowser.CHROME)
19826 @Experimental
19825 class TemplateElement extends _Element_Merged { 19827 class TemplateElement extends _Element_Merged {
19826 TemplateElement.internal() : super.internal(); 19828 TemplateElement.internal() : super.internal();
19827 19829
19830 @DomName('HTMLTemplateElement.HTMLTemplateElement')
19831 @DocsEditable
19832 factory TemplateElement() => document.$dom_createElement("template");
19833
19834 /// Checks if this type is supported on the current platform.
19835 static bool get supported => true;
19836
19828 @DomName('HTMLTemplateElement.content') 19837 @DomName('HTMLTemplateElement.content')
19829 @DocsEditable 19838 @DocsEditable
19830 DocumentFragment get content native "HTMLTemplateElement_content_Getter"; 19839 DocumentFragment get content native "HTMLTemplateElement_content_Getter";
19831 19840
19832 } 19841 }
19833 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 19842 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
19834 // for details. All rights reserved. Use of this source code is governed by a 19843 // for details. All rights reserved. Use of this source code is governed by a
19835 // BSD-style license that can be found in the LICENSE file. 19844 // BSD-style license that can be found in the LICENSE file.
19836 19845
19837 // WARNING: Do not edit - generated code. 19846 // WARNING: Do not edit - generated code.
(...skipping 7455 matching lines...) Expand 10 before | Expand all | Expand 10 after
27293 } 27302 }
27294 27303
27295 _send(msg) { 27304 _send(msg) {
27296 _sendToHelperIsolate(msg, _sendPort); 27305 _sendToHelperIsolate(msg, _sendPort);
27297 } 27306 }
27298 } 27307 }
27299 27308
27300 get _pureIsolateTimerFactoryClosure => 27309 get _pureIsolateTimerFactoryClosure =>
27301 ((int milliSeconds, void callback(Timer time), bool repeating) => 27310 ((int milliSeconds, void callback(Timer time), bool repeating) =>
27302 new _PureIsolateTimer(milliSeconds, callback, repeating)); 27311 new _PureIsolateTimer(milliSeconds, callback, repeating));
OLDNEW
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tests/html/element_types_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698