Chromium Code Reviews| Index: dashboard/dashboard/static/benchmark_quality_report.html |
| diff --git a/dashboard/dashboard/static/benchmark_quality_report.html b/dashboard/dashboard/static/benchmark_quality_report.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..67c7f28dcd90c00075822aad6ae2159f5348c827 |
| --- /dev/null |
| +++ b/dashboard/dashboard/static/benchmark_quality_report.html |
| @@ -0,0 +1,34 @@ |
| +<!DOCTYPE html> |
|
sullivan
2017/02/17 16:30:13
This is just boilerplate. I think long-term we cou
|
| +<!-- |
| +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-quality-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-quality-report-page></benchmark-quality-report-page> |
| + <load-analytics></load-analytics> |
| +</body> |
| +</html> |