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

Unified Diff: test/data/input/component_field_2way_test.html

Issue 11412285: New pub release - changes to comply with new SDK. (Closed) Base URL: git@github.com:dart-lang/dart-web-components.git@master
Patch Set: Created 8 years, 1 month 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
Index: test/data/input/component_field_2way_test.html
diff --git a/test/data/input/component_field_2way_test.html b/test/data/input/component_field_2way_test.html
index e02823f258846bb4219d74f9ed3495d4c2032d4e..4ac7ce4ecc6a53e47328a58a9655a972034b91fa 100644
--- a/test/data/input/component_field_2way_test.html
+++ b/test/data/input/component_field_2way_test.html
@@ -43,10 +43,10 @@
window.setTimeout(() {
var actual = query('#actual');
var greet = query('#greet');
- expect(actual.innerHTML, 'hello world');
+ expect(actual.innerHtml, 'hello world');
greet.xtag.changeStuff();
dispatch();
- expect(actual.innerHTML, contains('Yo dawg I heard'));
+ expect(actual.innerHtml, contains('Yo dawg I heard'));
window.postMessage('done', '*');
}, 0);
}
« no previous file with comments | « test/data/input/bind_hyphenated_attribute_test.html ('k') | test/data/input/dom_accessor_binding2_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698