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

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

Issue 34613005: Revert "Converting Polymer and TemplateElement to use deprecated Node.document" (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
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 part of $LIBRARYNAME; 7 part of $LIBRARYNAME;
8 8
9 /** 9 /**
10 * Model-Driven Views (MDV)'s native features enables a wide-range of use cases, 10 * Model-Driven Views (MDV)'s native features enables a wide-range of use cases,
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 throw new ArgumentError('instanceRef should not be supplied for ' 145 throw new ArgumentError('instanceRef should not be supplied for '
146 'attribute templates.'); 146 'attribute templates.');
147 } 147 }
148 templateElement = _extractTemplateFromAttributeTemplate(template); 148 templateElement = _extractTemplateFromAttributeTemplate(template);
149 templateElement._templateIsDecorated = true; 149 templateElement._templateIsDecorated = true;
150 isNative = templateElement is TemplateElement; 150 isNative = templateElement is TemplateElement;
151 liftRoot = true; 151 liftRoot = true;
152 } 152 }
153 153
154 if (!isNative) { 154 if (!isNative) {
155 var doc = _getTemplateContentsOwner(templateElement.document); 155 var doc = _getTemplateContentsOwner(templateElement.ownerDocument);
156 templateElement._templateContent = doc.createDocumentFragment(); 156 templateElement._templateContent = doc.createDocumentFragment();
157 } 157 }
158 158
159 if (instanceRef != null) { 159 if (instanceRef != null) {
160 // template is contained within an instance, its direct content must be 160 // template is contained within an instance, its direct content must be
161 // empty 161 // empty
162 templateElement._templateInstanceRef = instanceRef; 162 templateElement._templateInstanceRef = instanceRef;
163 } else if (liftContents) { 163 } else if (liftContents) {
164 _liftNonNativeChildrenIntoContent(templateElement, template, liftRoot); 164 _liftNonNativeChildrenIntoContent(templateElement, template, liftRoot);
165 } else if (bootstrapContents) { 165 } else if (bootstrapContents) {
(...skipping 28 matching lines...) Expand all
194 // <tr template repeat="{{ foo }}"" class="bar"><td>Bar</td></tr> 194 // <tr template repeat="{{ foo }}"" class="bar"><td>Bar</td></tr>
195 // 195 //
196 // becomes 196 // becomes
197 // 197 //
198 // <template repeat="{{ foo }}"> 198 // <template repeat="{{ foo }}">
199 // + #document-fragment 199 // + #document-fragment
200 // + <tr class="bar"> 200 // + <tr class="bar">
201 // + <td>Bar</td> 201 // + <td>Bar</td>
202 // 202 //
203 static Element _extractTemplateFromAttributeTemplate(Element el) { 203 static Element _extractTemplateFromAttributeTemplate(Element el) {
204 var template = el.document.createElement('template'); 204 var template = el.ownerDocument.createElement('template');
205 el.parentNode.insertBefore(template, el); 205 el.parentNode.insertBefore(template, el);
206 206
207 for (var name in el.attributes.keys.toList()) { 207 for (var name in el.attributes.keys.toList()) {
208 switch (name) { 208 switch (name) {
209 case 'template': 209 case 'template':
210 el.attributes.remove(name); 210 el.attributes.remove(name);
211 break; 211 break;
212 case 'repeat': 212 case 'repeat':
213 case 'bind': 213 case 'bind':
214 case 'ref': 214 case 'ref':
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 */ 300 */
301 void setInnerHtml(String html, 301 void setInnerHtml(String html,
302 {NodeValidator validator, NodeTreeSanitizer treeSanitizer}) { 302 {NodeValidator validator, NodeTreeSanitizer treeSanitizer}) {
303 text = null; 303 text = null;
304 var fragment = createFragment( 304 var fragment = createFragment(
305 html, validator: validator, treeSanitizer: treeSanitizer); 305 html, validator: validator, treeSanitizer: treeSanitizer);
306 306
307 content.append(fragment); 307 content.append(fragment);
308 } 308 }
309 } 309 }
OLDNEW
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698