1<!-- Copyright 2020 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 5<head> 6 <link href="./index.css" rel="stylesheet"> 7</head> 8<style> 9 .count { 10 text-align: right; 11 width: 5em; 12 } 13 14 .percentage { 15 text-align: right; 16 width: 4em; 17 } 18 19 .key { 20 padding-left: 1em; 21 } 22 23 .drilldown-group-title { 24 font-weight: bold; 25 padding: 0.5em 0 0.2em 0; 26 } 27 28 .toggle { 29 width: 1em; 30 text-align: left; 31 cursor: -webkit-zoom-in; 32 color: rgba(var(--border-color), 1); 33 user-select: none; 34 } 35 36 .toggle::before { 37 content: "▶"; 38 } 39 40 .open .toggle::before { 41 content: "▼"; 42 } 43 44 .panel { 45 position: relative; 46 } 47 48 .panelBody { 49 height: 400px; 50 } 51 52 .scroller { 53 max-height: 800px; 54 overflow-y: scroll; 55 } 56 57 .legend { 58 top: 40px; 59 } 60</style> 61 62<div class="panel"> 63 <input type="checkbox" id="closer" class="panelCloserInput" checked> 64 <label class="panelCloserLabel" for="closer">▼</label> 65 <h2 id="title"></h2> 66 <div class="selection"> 67 <input type="radio" id="show-all" name="selectionType" value="all"> 68 <label for="show-all">All</label> 69 <input type="radio" id="show-timerange" name="selectionType" value="timerange"> 70 <label for="show-timerange">Time Range</label> 71 <input type="radio" id="show-selection" name="selectionType" value="selection"> 72 <label for="show-selection">Last Selection</label> 73 </div> 74 <select id="group-key"></select> 75 <div id="content" class="panelBody"> 76 <slot></slot> 77 <table id="table" width="100%"> 78 </table> 79 </div> 80</div> 81