| Index: dashboard/dashboard/static/benchmark_health_report.html
|
| diff --git a/dashboard/dashboard/static/benchmark_health_report.html b/dashboard/dashboard/static/benchmark_health_report.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ebbeb6da58f9140132853b323253d4602ed7b236
|
| --- /dev/null
|
| +++ b/dashboard/dashboard/static/benchmark_health_report.html
|
| @@ -0,0 +1,34 @@
|
| +<!DOCTYPE html>
|
| +<!--
|
| +Copyright 2017 The Chromium Authors. All rights reserved.
|
| +Use of this source code is governed by a BSD-style license that can be
|
| +found in the LICENSE file.
|
| +-->
|
| +<html>
|
| +<head>
|
| + <link type="text/css" rel="stylesheet" href="/dashboard/static/base.css">
|
| + <script src="/components/webcomponentsjs/webcomponents-lite.min.js"></script>
|
| + <title>Chrome Performance Dashboard</title>
|
| +
|
| + <link rel="import" href="/components/polymer/polymer.html">
|
| +
|
| + <link rel="import" href="/dashboard/elements/benchmark-health-report-page.html">
|
| + <link rel="import" href="/dashboard/elements/load-analytics.html">
|
| + <link rel="import" href="/dashboard/elements/nav-bar.html">
|
| + <link rel="import" href="/dashboard/elements/toplevel-toast.html">
|
| +
|
| + <style>
|
| + body {
|
| + align-items: center;
|
| + -webkit-align-items: center;
|
| + }
|
| + </style>
|
| +</head>
|
| +<body>
|
| + <nav-bar></nav-bar>
|
| + <toplevel-toast></toplevel-toast>
|
| + <h1>Chrome Performance Dashboard</h1>
|
| + <benchmark-health-report-page></benchmark-health-report-page>
|
| + <load-analytics></load-analytics>
|
| +</body>
|
| +</html>
|
|
|