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

Side by Side Diff: sky/examples/data/cities.sky

Issue 950603002: Port sky-scrollable to Dart (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: less setAttributes Created 5 years, 10 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
« no previous file with comments | « sky/engine/core/html/parser/HTMLDocumentParser.cpp ('k') | sky/examples/example-scrollable.sky » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 // Copyright 2014 The Chromium Authors. All rights reserved. 2 // Copyright 2014 The Chromium Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be 3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file. 4 // found in the LICENSE file.
5 --> 5 -->
6 <script> 6 <script>
7 module.exports = [ 7 final List<Map> kData = [
8 {"name":"New York","state":"New York","population":8363710}, 8 {"name":"New York","state":"New York","population":8363710},
9 {"name":"Los Angeles","state":"California","population":3833995}, 9 {"name":"Los Angeles","state":"California","population":3833995},
10 {"name":"Chicago","state":"Illinois","population":2853114}, 10 {"name":"Chicago","state":"Illinois","population":2853114},
11 {"name":"Houston","state":"Texas","population":2242193}, 11 {"name":"Houston","state":"Texas","population":2242193},
12 {"name":"Phoenix","state":"Arizona","population":1567924}, 12 {"name":"Phoenix","state":"Arizona","population":1567924},
13 {"name":"Philadelphia","state":"Pennsylvania","population":1447395}, 13 {"name":"Philadelphia","state":"Pennsylvania","population":1447395},
14 {"name":"San Antonio","state":"Texas","population":1351305}, 14 {"name":"San Antonio","state":"Texas","population":1351305},
15 {"name":"Dallas","state":"Texas","population":1279910}, 15 {"name":"Dallas","state":"Texas","population":1279910},
16 {"name":"San Diego","state":"California","population":1279329}, 16 {"name":"San Diego","state":"California","population":1279329},
17 {"name":"San Jose","state":"California","population":948279}, 17 {"name":"San Jose","state":"California","population":948279},
(...skipping 4981 matching lines...) Expand 10 before | Expand all | Expand 10 after
4999 {"name":"Blanchester","state":"Ohio","population":4303}, 4999 {"name":"Blanchester","state":"Ohio","population":4303},
5000 {"name":"Waverly","state":"New York","population":4303}, 5000 {"name":"Waverly","state":"New York","population":4303},
5001 {"name":"Wolverine Lake","state":"Michigan","population":4303}, 5001 {"name":"Wolverine Lake","state":"Michigan","population":4303},
5002 {"name":"Jersey Shore","state":"Pennsylvania","population":4302}, 5002 {"name":"Jersey Shore","state":"Pennsylvania","population":4302},
5003 {"name":"Kenneth City","state":"Florida","population":4300}, 5003 {"name":"Kenneth City","state":"Florida","population":4300},
5004 {"name":"Jenkintown","state":"Pennsylvania","population":4299}, 5004 {"name":"Jenkintown","state":"Pennsylvania","population":4299},
5005 {"name":"Hartwell","state":"Georgia","population":4298}, 5005 {"name":"Hartwell","state":"Georgia","population":4298},
5006 {"name":"Newport","state":"North Carolina","population":4298} 5006 {"name":"Newport","state":"North Carolina","population":4298}
5007 ]; 5007 ];
5008 </script> 5008 </script>
OLDNEW
« no previous file with comments | « sky/engine/core/html/parser/HTMLDocumentParser.cpp ('k') | sky/examples/example-scrollable.sky » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698