File: index.html

package info (click to toggle)
nodejs 22.14.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 246,928 kB
  • sloc: cpp: 1,582,349; javascript: 582,017; ansic: 82,400; python: 60,561; sh: 4,009; makefile: 2,263; asm: 1,732; pascal: 1,565; perl: 248; lisp: 222; xml: 42
file content (57 lines) | stat: -rw-r--r-- 2,915 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<!--
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>
  <!-- This will be overwritten by the v8.dev/tools exporter -->
<!-- ANALYTICS_PLACEHOLDER -->
  <meta charset="utf-8">
  <title>V8 Turbolizer</title>
  <link rel="stylesheet" href="css/turbo-visualizer.css">
  <link rel="stylesheet" href="css/turbo-visualizer-ranges.css">
  <link rel="stylesheet" href="css/tabs.css">
  <link rel="stylesheet" href="css/turboshaft.css">
  <link rel="icon" href="turbolizer.png">
</head>

<body>
  <div id="history" class="content"></div>
  <div id="left" class="content"></div>
  <div id="resizer-left" class="resizer"></div>
  <div id="middle">
    <div id="load-file">
      <input type="file" id="upload-helper">
      <input type="image" id="upload" class="button-input" title="load graph" src="img/upload-icon.png" alt="upload graph">
    </div>
    <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 type="image" id="ranges-expand-vert" class="button-input invisible" title="show ranges" src="img/arrows/up-arrow.png">
      <input type="image" id="ranges-shrink-vert" class="button-input" title="hide ranges" src="img/arrows/down-arrow.png">
      <input type="image" id="ranges-expand-hor" class="button-input invisible" title="show ranges" src="img/arrows/left-arrow.png">
      <input type="image" id="ranges-shrink-hor" class="button-input invisible" title="hide ranges" src="img/arrows/right-arrow.png">
    </div>
  </div>
  <div id="resizer-right" class="resizer"></div>
  <div id="right" class="content"></div>
  <div id="show-hide-source" class="show-hide-pane">
    <input type="image" id="source-expand" class="button-input invisible" title="show source" src="img/arrows/right-arrow.png">
    <input type="image" id="source-shrink" class="button-input" title="hide source" src="img/arrows/left-arrow.png">
  </div>
  <div id="show-hide-disassembly" class="show-hide-pane">
    <input type="image" id="disassembly-expand" class="button-input invisible" title="show disassembly" src="img/arrows/left-arrow.png">
    <input type="image" id="disassembly-shrink" class="button-input" title="hide disassembly" src="img/arrows/right-arrow.png">
  </div>
  <div id="text-placeholder" style="width: 0; height: 0; position: absolute; top:100000px;">
    <svg>
      <text style="text-anchor: end;">
        <tspan id="text-measure" style="white-space: inherit;"></tspan>
      </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>