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

Unified Diff: pkg/template_binding/test/element_bindings_test.dart

Issue 36453002: fix template_binding tests on safari/ie (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/pkg.status ('k') | pkg/template_binding/test/template_element_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/template_binding/test/element_bindings_test.dart
diff --git a/pkg/template_binding/test/element_bindings_test.dart b/pkg/template_binding/test/element_bindings_test.dart
index 25d0289b45894893aa0ffd5100dfcff899f82c98..56c42c485ebc30d27cca918cf58e94117f4d48e9 100644
--- a/pkg/template_binding/test/element_bindings_test.dart
+++ b/pkg/template_binding/test/element_bindings_test.dart
@@ -104,7 +104,7 @@ elementBindingTests() {
el.text = 'dummy';
el.nodes.first.text = 'Hello {{ adj }} {{noun}}!';
var template = new Element.html('<template bind>');
- template.content.append(el);
+ templateBind(template).content.append(el);
testDiv.append(template);
templateBind(template).model = model;
@@ -383,7 +383,7 @@ elementBindingTests() {
observeTest('MultipleReferences', () {
var el = new DivElement();
var template = new Element.html('<template bind>');
- template.content.append(el);
+ templateBind(template).content.append(el);
testDiv.append(template);
var model = toObservable({'foo': 'bar'});
« no previous file with comments | « pkg/pkg.status ('k') | pkg/template_binding/test/template_element_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698