1<!DOCTYPE html>
2<html>
3<!--
4Copyright 2019 the V8 project authors. All rights reserved.  Use of this source
5code is governed by a BSD-style license that can be found in the LICENSE file.
6-->
7<head>
8  <meta charset="utf-8">
9  <title>V8 Turbolizer</title>
10  <link rel="stylesheet" href="turbo-visualizer.css">
11  <link rel="stylesheet" href="turbo-visualizer-ranges.css">
12  <link rel="stylesheet" href="tabs.css">
13  <link rel="icon" type="image/png" href="turbolizer.png">
14</head>
15
16<body>
17  <div id="left" class="content"></div>
18  <div id="resizer-left" class="resizer"></div>
19  <div id="middle">
20
21    <div id="load-file">
22      <input id="upload-helper" type="file">
23      <input id="upload" type="image" title="load graph" class="button-input" src="upload-icon.png" alt="upload graph">
24    </div>
25    <div id="resizer-ranges" class="resizer" style="visibility:hidden;"></div>
26    <div id="ranges" class="content" style="visibility:hidden;"></div>
27    <div id="show-hide-ranges" class="show-hide-pane" style="visibility: hidden">
28      <input id="ranges-expand" type="image" title="show ranges" src="up-arrow.png" class="button-input invisible">
29      <input id="ranges-shrink" type="image" title="hide ranges" src="down-arrow.png" class="button-input">
30    </div>
31  </div>
32  <div id="resizer-right" class="resizer"></div>
33  <div id="right" class="content"></div>
34  <div id="show-hide-source" class="show-hide-pane">
35    <input id="source-expand" type="image" title="show source" src="right-arrow.png" class="button-input invisible">
36    <input id="source-shrink" type="image" title="hide source" src="left-arrow.png" class="button-input">
37  </div>
38  <div id="show-hide-disassembly" class="show-hide-pane">
39    <input id="disassembly-expand" type="image" title="show disassembly" src="left-arrow.png" class="button-input invisible">
40    <input id="disassembly-shrink" type="image" title="hide disassembly" src="right-arrow.png" class="button-input">
41  </div>
42  <div id="text-placeholder" width="0" height="0" style="position: absolute; top:100000px;">
43    <svg>
44      <text text-anchor="right">
45        <tspan white-space="inherit" id="text-measure">
46      </text>
47    </svg>
48  </div>
49  <script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js"></script>
50  <script src="build/turbolizer.js"></script>
51</body>
52</html>
53