Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
|
sullivan
2017/02/17 16:30:13
This is just boilerplate. I think long-term we cou
| |
| 2 <!-- | |
| 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 | |
| 5 found in the LICENSE file. | |
| 6 --> | |
| 7 <html> | |
| 8 <head> | |
| 9 <link type="text/css" rel="stylesheet" href="/dashboard/static/base.css"> | |
| 10 <script src="/components/webcomponentsjs/webcomponents-lite.min.js"></script> | |
| 11 <title>Chrome Performance Dashboard</title> | |
| 12 | |
| 13 <link rel="import" href="/components/polymer/polymer.html"> | |
| 14 | |
| 15 <link rel="import" href="/dashboard/elements/benchmark-quality-report-page.htm l"> | |
| 16 <link rel="import" href="/dashboard/elements/load-analytics.html"> | |
| 17 <link rel="import" href="/dashboard/elements/nav-bar.html"> | |
| 18 <link rel="import" href="/dashboard/elements/toplevel-toast.html"> | |
| 19 | |
| 20 <style> | |
| 21 body { | |
| 22 align-items: center; | |
| 23 -webkit-align-items: center; | |
| 24 } | |
| 25 </style> | |
| 26 </head> | |
| 27 <body> | |
| 28 <nav-bar></nav-bar> | |
| 29 <toplevel-toast></toplevel-toast> | |
| 30 <h1>Chrome Performance Dashboard</h1> | |
| 31 <benchmark-quality-report-page></benchmark-quality-report-page> | |
| 32 <load-analytics></load-analytics> | |
| 33 </body> | |
| 34 </html> | |
| OLD | NEW |