| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright 2017 The Chromium Authors. All rights reserved. | 3 Copyright 2017 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 <html> | 7 <html> |
| 8 <head> | 8 <head> |
| 9 <link type="text/css" rel="stylesheet" href="/dashboard/static/base.css"> | 9 <link type="text/css" rel="stylesheet" href="/dashboard/static/base.css"> |
| 10 <script src="/components/webcomponentsjs/webcomponents-lite.min.js"></script> | 10 <script src="/components/webcomponentsjs/webcomponents-lite.min.js"></script> |
| 11 <title>Chrome Speed Releasing</title> | 11 <title>Chrome Speed Releasing</title> |
| 12 | 12 |
| 13 <link rel="import" href="/components/polymer/polymer.html"> | 13 <link rel="import" href="/components/polymer/polymer.html"> |
| 14 | 14 |
| 15 <link rel="import" href="/dashboard/elements/load-analytics.html"> | 15 <link rel="import" href="/dashboard/elements/load-analytics.html"> |
| 16 <link rel="import" href="/dashboard/elements/nav-bar.html"> | 16 <link rel="import" href="/dashboard/elements/nav-bar.html"> |
| 17 <link rel="import" href="/dashboard/elements/speed-releasing-page.html"> | 17 <link rel="import" href="/dashboard/elements/speed-releasing-page.html"> |
| 18 | 18 |
| 19 <style> | 19 <style> |
| 20 body { | 20 body { |
| 21 align-items: center; | 21 align-items: center; |
| 22 -webkit-align-items: center; | |
| 23 } | 22 } |
| 24 </style> | 23 </style> |
| 25 </head> | 24 </head> |
| 26 <body> | 25 <body> |
| 27 <nav-bar></nav-bar> | 26 <nav-bar></nav-bar> |
| 28 <speed-releasing-page></speed-releasing-page> | 27 <speed-releasing-page></speed-releasing-page> |
| 29 <load-analytics></load-analytics> | 28 <load-analytics></load-analytics> |
| 30 </body> | 29 </body> |
| 31 </html> | 30 </html> |
| OLD | NEW |