5e29241db8
- Add CollapsableElement helper - Collapse all panels by default - Only update panels if they are opened - Only update CodePanel Select element if the data has changed - Fix focusing SourcePosition selection Bug: v8:10644 Change-Id: Id9b5159e86623c7ca0f437dd9db6b0faff3ec573 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2859952 Auto-Submit: Camillo Bruni <cbruni@chromium.org> Reviewed-by: Patrick Thier <pthier@chromium.org> Commit-Queue: Patrick Thier <pthier@chromium.org> Cr-Commit-Position: refs/heads/master@{#74329}
37 lines
1.3 KiB
HTML
37 lines
1.3 KiB
HTML
<!-- Copyright 2020 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>
|
|
<link href="./index.css" rel="stylesheet">
|
|
</head>
|
|
<style>
|
|
#searchBarInput {
|
|
width: 200px;
|
|
}
|
|
</style>
|
|
<div class="panel">
|
|
<input type="checkbox" id="closer" class="panelCloserInput" checked>
|
|
<label class="panelCloserLabel" for="closer">▼</label>
|
|
<h2>Map Panel</h2>
|
|
<div class="selection">
|
|
<input type="radio" id="show-all" name="selectionType" value="all">
|
|
<label for="show-all">All</label>
|
|
<input type="radio" id="show-timerange" name="selectionType" value="timerange">
|
|
<label for="show-timerange">Time Range</label>
|
|
<input type="radio" id="show-selection" name="selectionType" value="selection">
|
|
<label for="show-selection">Last Selection</label>
|
|
</div>
|
|
<h3>All Transitions</h3>
|
|
<map-transitions id="map-transitions"></map-transitions>
|
|
<h3>Search Map by Address</h3>
|
|
<section id="searchBar"></section>
|
|
<input type="search" id="searchBarInput"></input>
|
|
<button id="searchBarBtn">Search</button>
|
|
|
|
<h3>Details Transitions</h3>
|
|
<map-transitions id="map-details-transitions"></map-transitions>
|
|
<h3>Details</h3>
|
|
<map-details id="map-details"></map-details>
|
|
</div>
|