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

Unified Diff: example/todomvc/test/todomvc_markdone_test.html

Issue 20863002: Introduce boot.js: this finally makes it possible to load and run Todomvc (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: Created 7 years, 5 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 | « example/todomvc/test/todomvc_mainpage2_test.html ('k') | example/todomvc/web/app.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: example/todomvc/test/todomvc_markdone_test.html
diff --git a/example/todomvc/test/todomvc_markdone_test.html b/example/todomvc/test/todomvc_markdone_test.html
index 7e65a9b1b0c2119136b1c2688ce8a140da391ff3..304a279c5253eef444b110e674d270a1472d0568 100644
--- a/example/todomvc/test/todomvc_markdone_test.html
+++ b/example/todomvc/test/todomvc_markdone_test.html
@@ -67,8 +67,8 @@ main() {
appModel.todos.add(new Todo('two (unchecked)'));
appModel.todos.add(new Todo('three (checked)')..done = true);
appModel.todos.add(new Todo('four (checked)'));
- deliverChangeRecords();
- // TODO(sigmund): investigate why is not enough to do Timer.run
+
+ // TODO(sigmund): investigate why is not enough to do Timer.run
new Timer(new Duration(milliseconds: 200), () {
// Note: use query because "document" is unwrapped in ShadowDOM polyfill.
var body = query('body');
@@ -91,6 +91,7 @@ main() {
});
});
}
+
</script>
</body>
</html>
« no previous file with comments | « example/todomvc/test/todomvc_mainpage2_test.html ('k') | example/todomvc/web/app.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698