26b56ba664
- Open and focus separate views for each log entry - Map.prototype.parent is now a getter - Fix SharedLibLogEntry tooltips - Store codeEntry in IcLogEntry for linking back to code objects - New property-link-table which is used in tooltip and code-panel - Ignore right-click events in the timeline-tracks Bug: v8:10644, v8:11835 Change-Id: Id2fe5002b776adf362b1580b96082c84790a6ef0 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2960804 Reviewed-by: Patrick Thier <pthier@chromium.org> Commit-Queue: Camillo Bruni <cbruni@chromium.org> Cr-Commit-Position: refs/heads/master@{#75150}
29 lines
865 B
HTML
29 lines
865 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>
|
|
#sourceCode {
|
|
white-space: pre-line;
|
|
}
|
|
</style>
|
|
<div class="panel">
|
|
<input type="checkbox" id="closer" class="panelCloserInput" checked>
|
|
<label class="panelCloserLabel" for="closer">▼</label>
|
|
<h2 class="title">Code Panel</h2>
|
|
<div class="selection">
|
|
<select id="codeSelect"></select>
|
|
<button id="selectedRelatedButton">Select Related Events</button>
|
|
</div>
|
|
<div class="panelBody">
|
|
<h3>Properties</h3>
|
|
<property-link-table id="properties"></property-link-table>
|
|
<h3>Disassembly</h3>
|
|
<pre id="disassembly"></pre>
|
|
<h3>Source Code</h3>
|
|
<pre id="sourceCode"></pre>
|
|
</div>
|
|
</div>
|