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

Side by Side Diff: tools/dom/templates/html/dart2js/html_dart2js.darttemplate

Issue 448413002: Do regular expression for camelCase CSS processing in JS. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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 // DO NOT EDIT - unless you are editing documentation as per: 5 // DO NOT EDIT - unless you are editing documentation as per:
6 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation 6 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation
7 // Auto-generated dart:html library. 7 // Auto-generated dart:html library.
8 8
9 /** 9 /**
10 * HTML elements and other resources for web-based applications that need to 10 * HTML elements and other resources for web-based applications that need to
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 import 'dart:_js_helper' show 52 import 'dart:_js_helper' show
53 convertDartClosureToJS, Creates, JavaScriptIndexingBehavior, 53 convertDartClosureToJS, Creates, JavaScriptIndexingBehavior,
54 JSName, Native, Null, Returns, 54 JSName, Native, Null, Returns,
55 findDispatchTagForInterceptorClass, setNativeSubclassDispatchRecord, 55 findDispatchTagForInterceptorClass, setNativeSubclassDispatchRecord,
56 makeLeafDispatchRecord; 56 makeLeafDispatchRecord;
57 import 'dart:_interceptors' show 57 import 'dart:_interceptors' show
58 Interceptor, JSExtendableArray, findInterceptorConstructorForType, 58 Interceptor, JSExtendableArray, findInterceptorConstructorForType,
59 findConstructorForNativeSubclassType, getNativeInterceptor, 59 findConstructorForNativeSubclassType, getNativeInterceptor,
60 setDispatchProperty; 60 setDispatchProperty;
61 import 'dart:_isolate_helper' show IsolateNatives; 61 import 'dart:_isolate_helper' show IsolateNatives;
62 import 'dart:_foreign_helper' show JS, JS_INTERCEPTOR_CONSTANT; 62 import 'dart:_foreign_helper' show JS, JS_INTERCEPTOR_CONSTANT, JS_CONST;
63 63
64 export 'dart:math' show Rectangle, Point; 64 export 'dart:math' show Rectangle, Point;
65 65
66 $!GENERATED_DART_FILES 66 $!GENERATED_DART_FILES
67 67
68 part '$AUXILIARY_DIR/AttributeMap.dart'; 68 part '$AUXILIARY_DIR/AttributeMap.dart';
69 part '$AUXILIARY_DIR/CanvasImageSource.dart'; 69 part '$AUXILIARY_DIR/CanvasImageSource.dart';
70 part '$AUXILIARY_DIR/CrossFrameTypes.dart'; 70 part '$AUXILIARY_DIR/CrossFrameTypes.dart';
71 part '$AUXILIARY_DIR/CssClassSet.dart'; 71 part '$AUXILIARY_DIR/CssClassSet.dart';
72 part '$AUXILIARY_DIR/CssRectangle.dart'; 72 part '$AUXILIARY_DIR/CssRectangle.dart';
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 * Spawn a DOM isolate using the given URI in the same window. 138 * Spawn a DOM isolate using the given URI in the same window.
139 * This isolate is not concurrent. It runs on the browser thread 139 * This isolate is not concurrent. It runs on the browser thread
140 * with full access to the DOM. 140 * with full access to the DOM.
141 * Note: this API is still evolving and may move to dart:isolate. 141 * Note: this API is still evolving and may move to dart:isolate.
142 */ 142 */
143 @Experimental() 143 @Experimental()
144 Future<Isolate> spawnDomUri(Uri uri, List<String> args, message) { 144 Future<Isolate> spawnDomUri(Uri uri, List<String> args, message) {
145 // TODO(17738): Implement this. 145 // TODO(17738): Implement this.
146 throw new UnimplementedError(); 146 throw new UnimplementedError();
147 } 147 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698