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

Side by Side Diff: samples/third_party/todomvc_performance/js_todomvc/components/polymer/polymer-body.html

Issue 204733004: Added TodoMVC startup benchmarks. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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 <polymer-element name="polymer-body" extends="body"> 1 <polymer-element name="polymer-body" extends="body">
2 2
3 <script> 3 <script>
4 4
5 // upgrade polymer-body last so that it can contain other imported elements 5 // upgrade polymer-body last so that it can contain other imported elements
6 document.addEventListener('polymer-ready', function() { 6 document.addEventListener('polymer-ready', function() {
7 7
8 Polymer('polymer-body', Platform.mixin({ 8 Polymer('polymer-body', Platform.mixin({
9 9
10 created: function() { 10 created: function() {
(...skipping 13 matching lines...) Expand all
24 this.lightFromTemplate(this.template); 24 this.lightFromTemplate(this.template);
25 } 25 }
26 26
27 }, window.model)); 27 }, window.model));
28 28
29 }); 29 });
30 30
31 </script> 31 </script>
32 32
33 </polymer-element> 33 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698