index.html 2.29 KB
Newer Older
1
<!DOCTYPE html>
2
<html>
3 4 5 6
<!--
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.
-->
7
<head>
8 9 10
  <meta charset="utf-8">
  <title>V8 Turbolizer</title>
  <link rel="stylesheet" href="turbo-visualizer.css">
11
  <link rel="stylesheet" href="turbo-visualizer-ranges.css">
12
  <link rel="stylesheet" href="tabs.css">
13 14 15 16
  <link rel="icon" type="image/png" href="turbolizer.png">
</head>

<body>
17
  <div id="left" class="content"></div>
18
  <div id="resizer-left" class="resizer"></div>
19
  <div id="middle">
20

21 22 23
    <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">
24
    </div>
25 26 27 28 29 30
    <div id="resizer-ranges" class="resizer" style="visibility:hidden;"></div>
    <div id="ranges" class="content" style="visibility:hidden;"></div>
    <div id="show-hide-ranges" class="show-hide-pane" style="visibility: hidden">
      <input id="ranges-expand" type="image" title="show ranges" src="up-arrow.png" class="button-input invisible">
      <input id="ranges-shrink" type="image" title="hide ranges" src="down-arrow.png" class="button-input">
    </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 36 37
    <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>
38
  <div id="show-hide-disassembly" class="show-hide-pane">
39 40 41
    <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>
42
  <div id="text-placeholder" width="0" height="0" style="position: absolute; top:100000px;">
43 44
    <svg>
      <text text-anchor="right">
45
        <tspan white-space="inherit" id="text-measure">
46 47 48
      </text>
    </svg>
  </div>
49
  <script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js"></script>
50 51
  <script src="build/turbolizer.js"></script>
</body>
52
</html>