| OLD | NEW |
| 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 <!DOCTYPE html> | 6 <!DOCTYPE html> |
| 7 <html> | 7 <html> |
| 8 <head> | 8 <head> |
| 9 <meta charset="utf-8"> | 9 <meta charset="utf-8"> |
| 10 <meta name="viewport" | 10 <meta name="viewport" |
| 11 content="initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-sca
lable=yes, width=device-width"> | 11 content="initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-sca
lable=yes, width=device-width"> |
| 12 <link rel="import" href="city-list.sky" /> | 12 <import src="city-list.sky" /> |
| 13 <style> | 13 <style> |
| 14 html, body { | 14 html, body { |
| 15 margin: 0; | 15 margin: 0; |
| 16 padding: 0; | 16 padding: 0; |
| 17 font-family: "Roboto", "HelveticaNeue",sans-serif; | 17 font-family: "Roboto", "HelveticaNeue",sans-serif; |
| 18 -webkit-font-smoothing: antialiased; | 18 -webkit-font-smoothing: antialiased; |
| 19 font-size: 13px; | 19 font-size: 13px; |
| 20 color: #222; | 20 color: #222; |
| 21 width: 100%; | 21 width: 100%; |
| 22 height: 100%; | 22 height: 100%; |
| 23 -webkit-user-select: none; | 23 -webkit-user-select: none; |
| 24 } | 24 } |
| 25 </style> | 25 </style> |
| 26 </head> | 26 </head> |
| 27 <script> | 27 <script> |
| 28 window.startLoad = new Date().getTime(); | 28 window.startLoad = new Date().getTime(); |
| 29 </script> | 29 </script> |
| 30 <body> | 30 <body> |
| 31 <city-list></city-list> | 31 <city-list></city-list> |
| 32 </body> | 32 </body> |
| 33 </html> | 33 </html> |
| OLD | NEW |