v8/tools/system-analyzer/view/property-link-table-template.html
Camillo Bruni 4a0921704a [tools][system-analyzer] Display timer events
Add common TimelineTrackStackedBase base class for TimelineTrackTick
and TimelineTrackTimer for visualising stacked time ranges that only
need rescaling when zooming in.

Additional changes:
- Highlight matching registers in disassembly
- Simplify CodeLogEntry summary for script code
- Show event for array items in the property-link-table


Bug: v8:10644
Change-Id: I0b37274e12ba55f1c6251b90d39d996ffae7f37e
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2992716
Reviewed-by: Victor Gomes <victorgomes@chromium.org>
Commit-Queue: Camillo Bruni <cbruni@chromium.org>
Cr-Commit-Position: refs/heads/master@{#75437}
2021-06-29 11:43:02 +00:00

39 lines
695 B
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>
.properties td {
vertical-align: top;
}
.properties > tbody > tr > td:nth-child(2n+1):after {
content: ':';
}
.properties > tbody > tr > td:nth-child(2n+1) {
padding-right: 3px;
}
.properties > tbody > tr > td:nth-child(2n+2) {
width: 100%;
}
.properties > tfoot {
text-align: right;
}
.properties {
min-width: 350px;
border-collapse: collapse;
}
h3 {
margin-block-start: 0em;
}
</style>
<div id="body">
<div id="content"></div>
</div>