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

Side by Side Diff: tools/dom/templates/html/impl/impl_Document.darttemplate

Issue 27429002: Fixing mirrors on Window, Document and Element (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 part of $LIBRARYNAME; 5 part of $LIBRARYNAME;
6 6
7 @DocsEditable 7 @DocsEditable()
8 $(ANNOTATIONS)$(CLASS_MODIFIERS)class $CLASSNAME extends Node $NATIVESPEC 8 $(ANNOTATIONS)$(CLASS_MODIFIERS)class $CLASSNAME extends Node $NATIVESPEC
9 { 9 {
10 10
11 $!MEMBERS 11 $!MEMBERS
12 /** 12 /**
13 * Finds all descendant elements of this document that match the specified 13 * Finds all descendant elements of this document that match the specified
14 * group of selectors. 14 * group of selectors.
15 * 15 *
16 * Unless your webpage contains multiple documents, the top-level queryAll 16 * Unless your webpage contains multiple documents, the top-level queryAll
17 * method behaves the same as this method, so you should use it instead to 17 * method behaves the same as this method, so you should use it instead to
(...skipping 25 matching lines...) Expand all
43 $else 43 $else
44 if (typeExtension != null) { 44 if (typeExtension != null) {
45 return _createElement(tagName, typeExtension); 45 return _createElement(tagName, typeExtension);
46 } else { 46 } else {
47 // Fast-path for Dartium when typeExtension is not needed. 47 // Fast-path for Dartium when typeExtension is not needed.
48 return _Utils.createElement(this, tagName); 48 return _Utils.createElement(this, tagName);
49 } 49 }
50 $endif 50 $endif
51 } 51 }
52 } 52 }
OLDNEW
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | tools/dom/templates/html/impl/impl_Element.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698