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

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

Issue 2704663003: First version of benchmark health report. (Closed)
Patch Set: 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
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>

Powered by Google App Engine
This is Rietveld 408576698