Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3201)

Unified Diff: dashboard/dashboard/static/benchmark_health_report.html

Issue 2704663003: First version of benchmark health report. (Closed)
Patch Set: Fix typo in test Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dashboard/dashboard/elements/benchmark-health-report-page-test.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « dashboard/dashboard/elements/benchmark-health-report-page-test.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698