a57270cfcc
Action items: * Replace alls css @import with link tags. * Format all sources in system-analyzer/*. Bug: v8:10644 Change-Id: I6354cf7b0ed2aca8cdab4888cf9d504a1d963b50 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2367869 Commit-Queue: Zeynep Cankara <zcankara@google.com> Reviewed-by: Camillo Bruni <cbruni@chromium.org> Reviewed-by: Sathya Gunasekaran <gsathya@chromium.org> Cr-Commit-Position: refs/heads/master@{#69545}
57 lines
1.0 KiB
HTML
57 lines
1.0 KiB
HTML
<!-- Copyright 2020 the V8 project authors. All rights reserved.
|
|
Use of this source code is governed by a BSD-style license that can be
|
|
found in the LICENSE file. -->
|
|
|
|
<head>
|
|
<link href="./index.css" rel="stylesheet">
|
|
</head>
|
|
<style>
|
|
#stats {
|
|
display: flex;
|
|
height: 250px;
|
|
background-color: var(--surface-color);
|
|
padding: 10px 10px 10px 10px;
|
|
margin: auto;
|
|
}
|
|
|
|
#stats table {
|
|
flex: 1;
|
|
padding-right: 50px;
|
|
max-height: 250px;
|
|
display: inline-block;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
#stats table td {
|
|
cursor: pointer;
|
|
}
|
|
|
|
#stats .transitionTable {
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
#stats .transitionTable tr {
|
|
max-width: 200px;
|
|
|
|
}
|
|
|
|
#stats .transitionType {
|
|
text-align: right;
|
|
max-width: 380px;
|
|
}
|
|
|
|
#stats .transitionType tr td:nth-child(2) {
|
|
text-align: left;
|
|
}
|
|
|
|
#stats table thead td {
|
|
border-bottom: 1px var(--on-surface-color) dotted;
|
|
}
|
|
</style>
|
|
<div class="panel">
|
|
<h2>Stats Panel</h2>
|
|
<h3>Stats</h3>
|
|
<section id="stats">
|
|
</section>
|
|
</div>
|