v8/tools/system-analyzer/view/map-panel/map-details-template.html
Camillo Bruni 95eeed52e4 [tools] Move system-analyzer view files to separate directory
- introduce view specific helper.mjs module
- clean up some imports

Bug: v8:10644
Change-Id: I0497c1a962c90f61f2beca667aca4a3f53a11e59
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2545705
Reviewed-by: Sathya Gunasekaran  <gsathya@chromium.org>
Commit-Queue: Camillo Bruni <cbruni@chromium.org>
Cr-Commit-Position: refs/heads/master@{#71269}
2020-11-18 18:04:25 +00:00

24 lines
531 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>
#mapDetails,
#filePositionNode {
overflow-x: scroll;
}
#mapDetails::-webkit-scrollbar {
width: 0;
background-color: transparent;
}
</style>
<div class="panel">
<h4>Map Details</h4>
<section id="filePositionNode"></section>
<section id="mapDetails"></section>
</div>