b137286b16
PR wasn't defined correctly and it was causing issues. Added prettify to the npm packages, and removed the (not needed) explicit prettify.css. Bug: v8:7327 Change-Id: Ieb8999d63df6764354dd628516e0ed9270b8a862 Notry: true Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1893344 Commit-Queue: Santiago Aboy Solanes <solanes@chromium.org> Reviewed-by: Sigurd Schneider <sigurds@chromium.org> Cr-Commit-Position: refs/heads/master@{#64726}
46 lines
1.8 KiB
HTML
46 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<!--
|
|
Copyright 2019 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>
|
|
<meta charset="utf-8">
|
|
<title>V8 Turbolizer</title>
|
|
<link rel="stylesheet" href="turbo-visualizer.css">
|
|
<link rel="stylesheet" href="tabs.css">
|
|
<link rel="icon" type="image/png" href="turbolizer.png">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="left" class="content"></div>
|
|
<div id="resizer-left" class="resizer"></div>
|
|
<div id="middle">
|
|
|
|
<div id="load-file">
|
|
<input id="upload-helper" type="file">
|
|
<input id="upload" type="image" title="load graph" class="button-input" src="upload-icon.png" alt="upload graph">
|
|
</div>
|
|
</div>
|
|
<div id="resizer-right" class="resizer"></div>
|
|
<div id="right" class="content"></div>
|
|
<div id="source-collapse" class="collapse-pane">
|
|
<input id="source-expand" type="image" title="show source" src="right-arrow.png" class="button-input invisible">
|
|
<input id="source-shrink" type="image" title="hide source" src="left-arrow.png" class="button-input">
|
|
</div>
|
|
<div id="disassembly-collapse" class="collapse-pane">
|
|
<input id="disassembly-expand" type="image" title="show disassembly" src="left-arrow.png" class="button-input invisible">
|
|
<input id="disassembly-shrink" type="image" title="hide disassembly" src="right-arrow.png" class="button-input">
|
|
</div>
|
|
<div id="text-placeholder" width="0" height="0" style="position: absolute; top:100000px;">
|
|
<svg>
|
|
<text text-anchor="right">
|
|
<tspan white-space="inherit" id="text-measure">
|
|
</text>
|
|
</svg>
|
|
</div>
|
|
<script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js"></script>
|
|
<script src="build/turbolizer.js"></script>
|
|
</body>
|
|
</html>
|