v8/tools/system-analyzer/view/property-link-table-template.html
Camillo Bruni 0c6ee45cb9 [tools][system-analyzer] Various fixes
- Fix processing lines that are longer than 1 chunk
- Add and use --code-font-size var
- Make minimum panel width 600px
- Track _lineNumber better Processor for easier debugging

Bug: v8:10644
Change-Id: I656e2ac5f0e9ba25ffa4b8c3ecc4b744144a691d
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3585568
Reviewed-by: Igor Sheludko <ishell@chromium.org>
Commit-Queue: Camillo Bruni <cbruni@chromium.org>
Cr-Commit-Position: refs/heads/main@{#79995}
2022-04-14 18:06:40 +00:00

65 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>
h3 {
margin-block-start: 0em;
}
.properties {
overflow: auto;
max-height: 300px;
}
.properties table {
overflow: visible;
min-width: 350px;
border-collapse: collapse;
}
.properties table td {
vertical-align: top;
}
.properties table > tbody > tr > td:nth-child(2n+1):after {
content: ':';
}
.properties table > tbody > tr > td:nth-child(2n+1) {
padding-right: 3px;
}
.properties table > tbody > tr > td:nth-child(2n+2) {
width: 100%;
}
.properties table select {
width: 100%;
}
.code {
font-family: var(--code-font);
font-size: var(--code-font-size);
}
.footer {
margin-top: 10px;
text-align: right;
width: 100%;
display: flex;
align-content: space-between;
}
.footer button {
flex: 1 1 0;
}
</style>
<div id="body">
<div id="content"></div>
</div>