1<!-- Copyright 2018 the V8 project authors. All rights reserved. 2Use of this source code is governed by a BSD-style license that can be 3found in the LICENSE file. --> 4<template id="histogram-viewer-template"> 5<style> 6#chart { 7 width: 100%; 8 height: 800px; 9} 10</style> 11<div id="container" style="display: none;"> 12 <h2>Details</h2> 13 <ul> 14 <li><span id="overall"></span></li> 15 </ul> 16 <div id="chart"></div> 17</div> 18</template> 19<script type="text/javascript" src="histogram-viewer.js"></script>