chrome-devtools-frontend
Version:
Chrome DevTools UI
25 lines (24 loc) • 639 B
HTML
<!--
Copyright 2019 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 lang="en">
<head>
<meta charset="utf-8">
<title>Debug</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<script type="module" src="/out/Default/resources/inspector_overlay/main.js"></script>
</head>
<body>
<script type="module">
function test() {
dispatch(["setPlatform", "mac"]);
dispatch(["setOverlay", "screenshot"]);
dispatch(["reset"]);
}
test();
</script>
</body>
</html>