chrome-devtools-frontend
Version:
Chrome DevTools UI
36 lines (30 loc) • 663 B
HTML
<!--
Copyright 2021 The Chromium Authors
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>Basic Issue Counter example</title>
<style>
#container {
width: 80%;
border: 1px solid black;
padding: 20px;
height: 300px;
}
#container > devtools-issue-counter {
vertical-align: middle;
}
</style>
</head>
<body>
<div id="container">
</div>
<ul id="events"></ul>
<script type="module" src="./basic.js"></script>
</body>
</html>