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

Unified Diff: test/data/input/dom_accessor_binding_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
« no previous file with comments | « test/data/input/dom_accessor_binding2_test.html ('k') | test/data/input/if_attribute_test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/data/input/dom_accessor_binding_test.html
diff --git a/test/data/input/dom_accessor_binding_test.html b/test/data/input/dom_accessor_binding_test.html
index 1af0d3c8a852a90b95c36904b2f3c2d82a4bb597..d8f18973474710a7c418f11dc81908cede29939b 100644
--- a/test/data/input/dom_accessor_binding_test.html
+++ b/test/data/input/dom_accessor_binding_test.html
@@ -20,13 +20,13 @@
main() {
window.on.load.add((e) {
var input = query('input');
- document.body.addText('expected input.value to be "A", got '
- '${input.value}');
+ document.body.appendText('expected input.value to be "A", got '
+ '${input.value}');
input.value = "B";
topLevelVar = "C";
dispatch();
- document.body.addText('expected input.value to be "C", got '
- '${input.value}');
+ document.body.appendText('expected input.value to be "C", got '
+ '${input.value}');
window.setTimeout(() => window.postMessage('done', '*'), 0);
});
}
« no previous file with comments | « test/data/input/dom_accessor_binding2_test.html ('k') | test/data/input/if_attribute_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698