1 <!DOCTYPE html> 2 <!-- 3 Copyright 2016 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 <head> 8 <title>Metrics debugger</title> 9 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 10 11 <link rel="import" href="/components/polymer/polymer.html"> 12 <link rel="import" href="/tracing/ui/metrics_debugger_app.html"> 13 14 <style> 15 html, 16 body { 17 box-sizing: border-box; 18 margin: 0px; 19 padding: 0; 20 width: 100%; 21 height: 100%; 22 font-family: sans-serif; 23 } 24 </style> 25 26 </head> 27 <body> 28 <tracing-ui-metrics-debugger-app> 29 </tracing-ui-metrics-debugger-app> 30 </body> 31 </html> 32