11cb0ef41Sopenharmony_ci<!-- Copyright 2020 the V8 project authors. All rights reserved.
21cb0ef41Sopenharmony_ciUse of this source code is governed by a BSD-style license that can be
31cb0ef41Sopenharmony_cifound in the LICENSE file. -->
41cb0ef41Sopenharmony_ci<head>
51cb0ef41Sopenharmony_ci  <link href="./index.css" rel="stylesheet">
61cb0ef41Sopenharmony_ci</head>
71cb0ef41Sopenharmony_ci
81cb0ef41Sopenharmony_ci<style>
91cb0ef41Sopenharmony_ci  #sourceCode {
101cb0ef41Sopenharmony_ci    white-space: pre-line;
111cb0ef41Sopenharmony_ci  }
121cb0ef41Sopenharmony_ci  .reg, .addr {
131cb0ef41Sopenharmony_ci    border-bottom: 1px dashed;
141cb0ef41Sopenharmony_ci    border-radius: 2px;
151cb0ef41Sopenharmony_ci  }
161cb0ef41Sopenharmony_ci  .reg:hover, .addr:hover {
171cb0ef41Sopenharmony_ci    background-color: var(--border-color);
181cb0ef41Sopenharmony_ci  }
191cb0ef41Sopenharmony_ci  .reg.selected, .addr.selected {
201cb0ef41Sopenharmony_ci    color: var(--default-color);
211cb0ef41Sopenharmony_ci    background-color: var(--border-color);
221cb0ef41Sopenharmony_ci  }
231cb0ef41Sopenharmony_ci  .addr:hover {
241cb0ef41Sopenharmony_ci    cursor: pointer;
251cb0ef41Sopenharmony_ci  }
261cb0ef41Sopenharmony_ci  .basicBlock:hover {
271cb0ef41Sopenharmony_ci    background-color: var(--border-color);
281cb0ef41Sopenharmony_ci    border-radius: 2px;
291cb0ef41Sopenharmony_ci  }
301cb0ef41Sopenharmony_ci</style>
311cb0ef41Sopenharmony_ci
321cb0ef41Sopenharmony_ci<div class="panel">
331cb0ef41Sopenharmony_ci  <input type="checkbox" id="closer" class="panelCloserInput" checked>
341cb0ef41Sopenharmony_ci  <label class="panelCloserLabel" for="closer">▼</label>
351cb0ef41Sopenharmony_ci  <h2 class="title">Code Panel</h2>
361cb0ef41Sopenharmony_ci  <div class="selection">
371cb0ef41Sopenharmony_ci    <select id="codeSelect"></select>
381cb0ef41Sopenharmony_ci    <button id="selectedRelatedButton">Select Related Events</button>
391cb0ef41Sopenharmony_ci  </div>
401cb0ef41Sopenharmony_ci  <div class="panelBody">
411cb0ef41Sopenharmony_ci    <h3>Properties</h3>
421cb0ef41Sopenharmony_ci    <property-link-table id="properties"></property-link-table>
431cb0ef41Sopenharmony_ci    <h3>FeedbackVector</h3>
441cb0ef41Sopenharmony_ci    <property-link-table id="feedbackVector"></property-link-table>
451cb0ef41Sopenharmony_ci    <h3>Disassembly</h3>
461cb0ef41Sopenharmony_ci    <pre id="disassembly"></pre>
471cb0ef41Sopenharmony_ci  </div>
481cb0ef41Sopenharmony_ci</div>
49