chrome-devtools-frontend
Version:
Chrome DevTools UI
31 lines (27 loc) • 662 B
HTML
<!--
Copyright 2023 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>Flame Chart</title>
<style>
.container {
width: 800px;
height: 200px;
display: flex;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div id="container1" class="container">
</div>
<div id="container2" class="container">
</div>
<script type="module" src="./flamechart.js"></script>
</body>
</html>