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

Side by Side Diff: samples/third_party/todomvc_performance/web/elements/td_todos.html

Issue 204733004: Added TodoMVC startup benchmarks. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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
OLDNEW
1 <link rel="import" href="../lib-elements/polymer-selector.html"> 1 <link rel="import" href="../lib-elements/polymer-selector.html">
2 <link rel="import" href="../lib-elements/simple_router.html"> 2 <link rel="import" href="../lib-elements/simple_router.html">
3 <link rel="import" href="td_input.html"> 3 <link rel="import" href="td_input.html">
4 <link rel="import" href="td_item.html"> 4 <link rel="import" href="td_item.html">
5 5
6 <polymer-element name="td-todos"> 6 <polymer-element name="td-todos">
7 <template> 7 <template>
8 <link rel="stylesheet" href="td_todos.css"> 8 <link rel="stylesheet" href="td_todos.css">
9 <simple-router on-route="{{routeAction}}"></simple-router> 9 <simple-router on-route="{{routeAction}}"></simple-router>
10 <section id="todoapp"> 10 <section id="todoapp">
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 <button hidden?="{{model.completedCount == 0}}" id="clear-completed" 42 <button hidden?="{{model.completedCount == 0}}" id="clear-completed"
43 on-click="{{clearCompletedAction}}">Clear completed 43 on-click="{{clearCompletedAction}}">Clear completed
44 ({{model.completedCount}})</button> 44 ({{model.completedCount}})</button>
45 </footer> 45 </footer>
46 </section> 46 </section>
47 </template> 47 </template>
48 48
49 <script type="application/dart" src="td_todos.dart"></script> 49 <script type="application/dart" src="td_todos.dart"></script>
50 50
51 </polymer-element> 51 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698