UNPKG

chrome-devtools-frontend

Version:
16 lines (12 loc) 707 B
// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import * as ComponentHelpers from '../../../../../front_end/ui/components/helpers/helpers.js'; import * as RecorderComponents from '../../../../panels/recorder/components/components.js'; import * as FrontendHelpers from '../../../../testing/EnvironmentHelpers.js'; await ComponentHelpers.ComponentServerSetup.setup(); await FrontendHelpers.initializeGlobalVars(); const component = new RecorderComponents.ControlButton.ControlButton(); component.shape = 'circle'; component.label = 'ControlButton'; document.getElementById('container')?.appendChild(component);