Chromium DevTools UI Engineering

Objective and scope

This document defines how to build Chromium DevTools UI. It aims at improving consistency, maintainability and extensibility of the current code

Consistency here means to have one way to do one thing, in the context of this doc to have a single reusable component per repeated task.

Maintainability is addressed here through the separation of concerns while avoiding unnecessary indirection.

Extensibility requires the ease of understanding and imitation, i.e. being able to take an existing code, understand and use it as an example to solve another problem.

Additionally, all the changes need to be applicable to the existing code point-wise instead of requiring extensive rewriting.

Reusable web components

Common UI primitives need to be implemented as web components. Examples include buttons, checkboxs, or data grids. Web components should not be used solely for encapsulation, we should not have single-use web components.

Not all reusable code should be a web component: in the Application panel we have several similar views showing key-value pairs in a datagrid with a preview sidebar. Making this a truly reusable component will lead to an unjustifiable complexity. Instead we should have extracted a base class or helpers implementing the common functionality.

In implementation we should prefer wrapping existing code under ui/legacy over new implementation. The former is the most feature-rich (including less obvious aspects like a11y) and has stood the test of time.

We should however strive to expose a “HTML-native” API: e.g. toolbar doesn’t need an items setter if its child HTML elements could define its content. Even the data grid doesn’t need to expose data grid nodes, when <tr> and <td>’s are enough.

Model-View-Presenter architecture

We should strictly separate business logic from UI logic and presentation. This means that most of the UI code should be centered around a presenter (a subclass of UI.Widget) that gets a view function injected. All the logic that is not related to the DevTools UI (i.e., that would stay the same if we were to rewrite DevTools as a command-line tool) should belong to the model layer.

The presenter should make no assumptions about the details of the model or view code. It should not care what race conditions CDP exposes or how many layers of <div class="wrapper"> the markup has.

For testability and simplicity, the view function should be injectable into the presenter‘s constructor. The presenter should also provide a default view. The recommended pattern is to define the default rendering logic in a separate, exported function named DEFAULT_VIEW. The presenter’s constructor can then use this as the default value for its view parameter.

This approach has two main benefits:

  1. Testability: In unit tests, we can pass a simple stub as the view function, which allows us to test the presenter's logic without any DOM manipulation.
  2. Clarity: It cleanly separates the presenter's logic from its rendering logic.

To test the DEFAULT_VIEW function itself, we should use screenshot and e2e tests.

Declarative and orchestrated DOM updates

We should no longer use imperative API to update DOM. Instead we rely on orchestrated rendering of lit-html templates. The view function described above should be a call to lit-html render. The view function should be called from UI.Widget’s performUpdate method, which by default is scheduled using requestAnimationFrame.

To embed another presenter (UI.Widget) in the lit-html template, use <devtools-widget .widgetConfig=${widgetConfig(<class>, {foo: 1, bar: 2})}

This will instantiate a Widget class with the web component as its element and, optionally, will set the properties provided in the second parameter. The widget won’t be re-instantiated on the subsequent template renders, but the properties would be updated. For this to work, the widget needs to accept HTMLElement as a sole constructor parameter and properties need to be public members or setters.

For backwards compatibility, the first argument to widgetConfig can also be a factory function: <devtools-widget .widgetConfig=${widgetConfig(element => new MyWidget(foo, bar, element))}>. Similar to the class constructor version, element is the actual <devtools-widget> so the following two invocations of widgetConfig are equivalent: widgetConfig(MyWidget) and widgetConfig(element => new MyWidget(element)).

Styling

To prevent style conflicts in widgets without relying on shadow DOM, we use the CSS @scope at-rule for style encapsulation. This ensures that styles defined for a widget do not leak out and affect other components.

The convention is to add the @scope rule directly into the widget‘s .css file. The scope’s “lower boundary” is set to (devtools-widget > *). This prevents the styles from cascading into the contents of any nested child widgets, while still allowing the parent to style the <devtools-widget> element itself.

First, define the styles within an @scope block in your CSS file:

/* my-widget.css */
@scope to (devtools-widget > *) {
  /* Use :scope to style the widget's container element itself. */
  :scope {
    width: 100%;
    box-shadow: none;
  }

  .title {
    font-size: 1.2em;
    color: var(--sys-color-tonal-on-container);
  }
}

Then, import and use these styles in your widget's view function:

/* myWidget.ts */
import {html} from 'lit-html';
import * as UI from '../../ui/legacy/legacy.js';
import myWidgetStyles from './myWidget.css.js';

render(html`
  <style>
    ${myWidgetStyles}
  </style>
  <div class="container">
    <h3 class="title">My Widget</h3>
    ...
    <devtools-widget .widgetConfig=${widgetConfig(NestedWidget)}></devtools-widget>
  </div>
`, this.element);

In this example, the .title style will apply within the parent widget but will not leak into the nested <devtools-widget>. Because this convention relies on developer discipline, it is important to verify its correct application during code reviews.

Examples

<devtools-widget .widgetConfig=${widgetConfig(ElementsPanel)}>
  <devtools-split-view>
    <devtools-widget slot="main" .widgetConfig=${widgetConfig(ElementsTree)}></devtools-widget>
    <devtools-tab-pane slot="sidebar">
      <devtools-widget .widgetConfig=${widgetConfig(StylesPane, {element: input.element})}></devtools-widget>
      <devtools-widget .widgetConfig=${widgetConfig(ComputedPane, {element: input.element})}></devtools-widget>
      ...
    </devtools-tab-pane>
  </devtools-split-view>
</devtools-widget>
type View = (input: ViewInput, output: ViewOutput, target: HTMLElement) => void;
const DEFAULT_VIEW = (input, output, target) => {
  render(html`
    <devtools-widget .widgetConfig=${widgetConfig(MetricsPane, {element: input.element})}>
    </devtools-widget>
    <devtools-toolbar>
      <devtools-filter-input @change=${input.onFilter}></devtools-filter-input>
      <devtools-checkbox @change=${input.onShowAll}>Show All</devtools-checkbox>
      <devtools-checkbox @change=${input.onGroup}>Group</devtools-checkbox>
    </devtools-toolbar>
    <devtools-tree-outline>
      ${input.properties.map(p => html`<li>
        <dt>${p.key}</dt><dd>${renderValue(p.value)}</dd>
        <ol>${p.subproperties.map(...)}
        </li>`)}
    </devtools-tree-outline>
  `, target);
};

class StylesPane extends UI.Widget {
  #view: View;
  constructor(element, view = DEFAULT_VIEW) {
    this.#view = view;
  }

  performUpdate() {
    this.#view(inputPlaceholder, this.#outputPlaceholder, this.contentElement);
  }
}

https://source.chromium.org/chromium/chromium/src/+/main:third_party/devtools-frontend/src/front_end/panels/protocol_monitor/ProtocolMonitor.ts;l=197

https://source.chromium.org/chromium/chromium/src/+/main:third_party/devtools-frontend/src/front_end/panels/developer_resources/DeveloperResourcesListView.ts;l=86

https://source.chromium.org/chromium/chromium/src/+/main:third_party/devtools-frontend/src/front_end/panels/timeline/TimelineSelectorStatsView.ts;l=113

Unit tests

When testing presenters, rely on observable effects such as view updates or model calls.

View stubbing

// ✅ recommended: stub the view function using createViewFunctionStub.
import {createViewFunctionStub} from './ViewFunctionHelpers.js';
const view = createViewFunctionStub(Presenter);
const presenter = new Presenter(view);

// ✅ recommended: expect a view stub call in response to presenter behavior.
present.show();
const input = await view.nextInput;

// ✅ recommended: expect a view stub call in response to an event from the view.
input.onEvent();
assert.deepStrictEqual(await view.nextInput, {});

// ❌ not recommended: Widget.updateComplete only reports a current view update
// operation status and might create flakiness depending on doSomething() implementation.
presenter.doSomething();
await presenter.updateComplete;
assert.deepStrictEqual(view.lastCall.args[0], {});

// ❌ not recommended: awaiting for the present logic to finish might
// not account for async or throttled view updates.
await presenter.doSomething();
// ❌ not recommended: it is easy for such assertions to
// rely on the data not caused by the action being tested.
sinon.assert.calledWith(view, sinon.match({ data: 'smth' }));

Model stubbing

// ✅ recommended: stub models that the presenter relies on.
// Note there are many good ways to stub/mock models with sinon
// depending on the use case and existing model code structure.
const cssModel = sinon.createStubInstance(SDK.CSSModel.CSSModel);

const presenter = new Presenter();
// ✅ recommended: expect model calls as the result of invoking
// presenter's logic.
const modelCall = expectCall(cssModel.headersForSourceURL, {
  fakeFn: () => {
    return false,
  },
});
// ✅ recommended: expect view calls to result in output based
// on the mocked model.
const viewCall = view.nextInput;

presenter.doSomething();

// ✅ recommended: assert arguments provided to model calls.
const [url] = await modelCall;
assert.strictEqual(url, '...');

assert.deepStrictEqual((await viewCall).headersForSourceURL, [{...}]);

// ❌ not recommended: mocking CDP responses to make the models behave in a certain way
// while testing a presenter is fragile.
setMockConnectionResponseHandler('CSS.getHeaders', () => ({}));
const presenter = new Presenter();
presenter.doSomething();

Migrating Widgets and other “legacy” components

This section provides a series of examples for migrating from imperative DOM manipulation to a declarative approach using lit-html templates.

Setting className on this.element

Instead of setting className directly on this.element, define the component's structure declaratively using a lit-html template.

Before:

class SomeWidget extends UI.Widget.Widget {
          constructor() {
            super();
            this.element.className = 'some-class';
          }
      }

After:


export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div class="some-class"></div>`, target, {host: input}); };

Appending a new element

Instead of using appendChild with document.createElement, define the new element within a lit-html template.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); this.contentElement.appendChild(document.createElement('div')); } }

After:



export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div> <div></div> </div>`, target, {host: input}); };

Setting multiple attributes and textContent

Combine setting className, attributes, and textContent into a single declarative lit-html template.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); this.contentElement.className = 'some-class'; this.contentElement.setAttribute('aria-label', 'some-label'); this.contentElement.textContent = 'some-text'; } }

After:



export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div class="some-class" aria-label="some-label">some-text</div>`, target, {host: input}); };

Creating a child, adding a class, and adding an event listener

Use a lit-html template to create the element, set multiple classes, and attach event listeners declaratively.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); this.container = this.contentElement.createChild('div', 'some-class'); this.container.classList.add('container'); this.container.addEventListener('click', this.onClick.bind(this)); } }

After:



export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div> <div class="some-class container" @click=${this.onClick.bind(this)}></div> </div>`, target, {host: input}); };

Setting inline styles

Set inline styles directly within the lit-html template using the style attribute.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); this.contentElement.style.width = '100%'; this.contentElement.style.marginLeft = '10px'; } }

After:



export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div style="width:100%; margin-left:10px"></div>`, target, {host: input}); };

Creating and appending a styled element

Replace document.createElement, setting className, and appendChild with a declarative lit-html template.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); const div = document.createElement('div'); div.className = 'some-class'; this.contentElement.appendChild(div); } }

After:



export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div> <div class="some-class"></div> </div>`, target, {host: input}); };

Creating a child with text content

Define the element and its text content directly within a lit-html template.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); this.contentElement.createChild('span', 'some-class').textContent = 'some-text'; } }

After:



export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div> <span class="some-class">some-text</span> </div>`, target, {host: input}); };

Migrating UI.Toolbar.ToolbarFilter

Replace the imperative creation of a ToolbarFilter with the declarative <devtools-toolbar-input> component.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); const toolbar = this.contentElement.createChild('devtools-toolbar'); const filterInput = new UI.Toolbar.ToolbarFilter('some-placeholder', 0.5, 1, undefined, this.complete.bind(this), false, 'some-filter'); filterInput.addEventListener(UI.Toolbar.ToolbarInput.Event.TEXT_CHANGED, this.onFilterChanged.bind(this)); filterInput.element.classList.add('completions'); filterInput.element.setAttribute('aria-hidden', 'true'); toolbar.appendToolbarItem(filterInput); } }

After:



export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div> <devtools-toolbar> <devtools-toolbar-input class="completions" type="filter" placeholder="some-placeholder" list="completions" id="some-filter" aria-hidden="true" @change=${this.onFilterChanged.bind(this)} style="flex-grow:0.5; flex-shrink:1"> <datalist id="completions">${this.complete.bind(this)}</datalist> </devtools-toolbar-input> </devtools-toolbar> </div>`, target, {host: input}); };

Migrating UI.Toolbar.ToolbarInput

Replace the imperative creation of a ToolbarInput with the declarative <devtools-toolbar-input> component.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); const toolbar = this.contentElement.createChild('devtools-toolbar'); const filterInput = new UI.Toolbar.ToolbarInput('some-placeholder', 'accessible-placeholder', 0.5, 1); toolbar.appendToolbarItem(filterInput); } }

After:



export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div> <devtools-toolbar> <devtools-toolbar-input type="text" placeholder="some-placeholder" aria-label="accessible-placeholder" style="flex-grow:0.5; flex-shrink:1"></devtools-toolbar-input> </devtools-toolbar> </div>`, target, {host: input}); };

Migrating Adorners.Adorner.Adorner

Replace the imperative creation of an Adorner with the declarative <devtools-adorner> component.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); const adornerContent = document.createElement('span'); adornerContent.innerHTML = '<div style="font-size: 12px;">💫</div>'; const adorner = new Adorners.Adorner.Adorner(); adorner.classList.add('fix-perf-icon'); adorner.data = { name: i18nString(UIStrings.fixMe), content: adornerContent, jslogContext: 'fix-perf', }; this.contentElement.appendChild(adorner); } }

After:



export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div> <devtools-adorner class="fix-perf-icon" aria-label=${i18nString(UIStrings.fixMe)} jslog=${VisualLogging.adorner('fix-perf')}> <span><div style="font-size: 12px;">💫</div></span> </devtools-adorner> </div>`, target, {host: input}); };

Migrating UI.Toolbar.ToolbarButton

Replace the imperative creation of a ToolbarButton with the declarative <devtools-button> component.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); const toolbar = this.contentElement.createChild('devtools-toolbar'); const editButton = new UI.Toolbar.ToolbarButton(i18nString(UIStrings.editName), 'edit', undefined, 'edit-name'); editButton.addEventListener(UI.Toolbar.ToolbarButton.Events.CLICK, this.onClick.bind(this)); toolbar.appendToolbarItem(editButton); } }

After:



export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div> <devtools-toolbar> <devtools-button title=${i18nString(UIStrings.editName)} @click=${this.onClick.bind(this)} .variant=${Buttons.Button.Variant.TOOLBAR} .iconName=${'edit'} .jslogContext=${'edit-name'}></devtools-button> </devtools-toolbar> </div>`, target, {host: input}); };

Migrating various HTML elements with multiple properties

Replace imperative creation of standard HTML elements like <a>, <img>, and <input> with their declarative equivalents in a lit-html template, setting their properties as attributes.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); const input = document.createElement('input'); input.type = 'text'; input.placeholder = 'some-placeholder'; input.value = 'some-value'; input.disabled = !this.enabled; input.checked = true this.contentElement.append(input); const anchor = document.createElement('a'); anchor.href = 'https://www.google.com'; anchor.innerText = 'some-text'; anchor.dataset.someKey = 'some-value'; anchor.role = 'some-role'; this.contentElement.insertBefore(anchor, input); const img = document.createElement('img'); img.src = 'https://www.google.com/some-image.png'; img.alt = 'some-alt'; img.draggable = true; img.height = 100; img.hidden = 'hidden'; img.href = 'https://www.google.com'; img.id = 'some-id'; img.name = 'some-name'; img.rel = 'some-rel'; img.scope = 'some-scope'; input.insertAdjacentElement('beforebegin', img); } }

After:



export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div> <a href="https://www.google.com" data-some-key="some-value" role="some-role">some-text</a> <img src="https://www.google.com/some-image.png" alt="some-alt" draggable="true" height="100" hidden="hidden" href="https://www.google.com" id="some-id" name="some-name" rel="some-rel" scope="some-scope"></img> <input type="text" placeholder="some-placeholder" value="some-value" ?disabled=${!this.enabled} checked> </div>`, target, {host: input}); };

Migrating UI.UIUtils helpers

Replace UI.UIUtils helper functions like createLabel and createTextButton with their declarative component counterparts like <label> and <devtools-button>.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); const select = document.createElement('select'); select.add(UI.UIUtils.createOption('Option 1', '1', 'option-1')); this.contentElement.appendChild(UI.UIUtils.createLabel('Some label:', 'some-label', select)); this.contentElement.appendChild(UI.UIUtils.createTextButton('Some button', onClick, { className: 'some-class', jslogContext: 'some-button', variant: Buttons.Button.Variant.PRIMARY, title: i18nString(UIStrings.someTitle), iconName: 'some-icon' })); } }

After:



export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div> <label class="some-label">Some label: <select> <option value="1" jslog=${VisualLogging.dropDown('1').track({click: true})}>Option 1</option> </select> </label> <devtools-button class="some-class" title=${i18nString(UIStrings.someTitle)} @click=${onClick} .jslogContext=${'some-button'} .variant=${Buttons.Button.Variant.PRIMARY}>Some button</devtools-button> </div>`, target, {host: input}); };

Migrating UI.UIUtils.createTextChild

Instead of using createTextChild, include the text directly inside the element in the lit-html template.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); UI.UIUtils.createTextChild(this.contentElement.createChild('div', 'some-class'), 'some-text'); } }

After:



export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div> <div class="some-class">some-text</div> </div>`, target, {host: input}); };

Migrating Buttons.Button.Button with ARIA and Tooltip helpers

Replace the imperative creation of a Button and subsequent modifications with ARIA and Tooltip helpers with a single declarative <devtools-button> component, setting properties like role and title.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); this.button = new Buttons.Button.Button(); this.button.data = { jslogContext: 'some-button', variant: Buttons.Button.Variant.PRIMARY, title: i18nString(UIStrings.someTitle), }; UI.ARIAUtils.markAsPresentation(this.button); UI.Tooltip.Tooltip.install(this.button, i18nString(UIStrings.someTooltip)); } }

After:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); this.button = html` <devtools-button role="presentation" title=${i18nString(UIStrings.someTooltip)} .data=${{ jslogContext: 'some-button', variant: Buttons.Button.Variant.PRIMARY, title: i18nString(UIStrings.someTitle), }} ></devtools-button>`; } }

Migrating IconButton.Icon.Icon

Replace the imperative Icon creation with the declarative <devtools-icon> component.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); const icon = new IconButton.Icon.Icon(); icon.data = {iconName: 'checkmark', color: 'var(--icon-checkmark-green)', width: '14px', height: '14px'}; this.contentElement.appendChild(icon); } }

After:



export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div> <devtools-icon name="checkmark" style="color:var(--icon-checkmark-green); width:14px; height:14px"></devtools-icon> </div>`, target, {host: input}); };

Migrating Checkboxes

Replace various imperative checkbox creation methods with the declarative <devtools-checkbox> component. For settings-backed checkboxes, use the bindToSetting directive.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); this.contentElement.appendChild(UI.UIUtils.CheckboxLabel.create( i18nString(UIStrings.someTitle), true, i18nString(UIStrings.someTooltip), undefined, 'some-checkbox', true)); this.contentElement.appendChild(UI.UIUtils.CheckboxLabel.create()); this.contentElement.appendChild(UI.UIUtils.CheckboxLabel.createWithStringLiteral( ':hover', undefined, undefined, 'some-other-checkbox')); const toolbar = this.contentElement.createChild('devtools-toolbar'); toolbar.appendToolbarItem(new UI.Toolbar.ToolbarCheckbox( i18nString(UIStrings.someToolbarTitle), i18nString(UIStrings.someToolbarTooltip), this.someToolbarCheckboxClicked.bind(this), 'some-toolbar-checkbox')); toolbar.appendToolbarItem(new UI.Toolbar.ToolbarSettingCheckbox( this.someSetting, i18nString(UIStrings.someToolbarTooltip), i18nString(UIStrings.alternateToolbarTitle))); toolbar.appendToolbarItem(new UI.Toolbar.ToolbarSettingCheckbox(this.someOtherSetting)); } }

After:



export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div> <devtools-checkbox class="small" checked>${i18nString(UIStrings.someTitle)}</devtools-checkbox> <devtools-checkbox></devtools-checkbox> <devtools-checkbox class="small">:hover</devtools-checkbox> <devtools-toolbar> <devtools-checkbox title=${i18nString(UIStrings.someToolbarTooltip)} @click=${this.someToolbarCheckboxClicked.bind(this)} .jslogContext=${'some-toolbar-checkbox'}>${i18nString(UIStrings.someToolbarTitle)}</devtools-checkbox> <devtools-checkbox title=${i18nString(UIStrings.someToolbarTooltip)} ${bindToSetting(this.someSetting)}>${i18nString(UIStrings.alternateToolbarTitle)}</devtools-checkbox> <devtools-checkbox ${bindToSetting(this.someOtherSetting)}>${this.someOtherSetting.title()}</devtools-checkbox> </devtools-toolbar> </div>`, target, {host: input}); };

Binding an action to a button

Use the bindToAction directive to create a button that is bound to a registered action. The button‘s properties (e.g., title, disabled) will be automatically updated when the action’s state changes.

Before:

class SomeWidget extends UI.Widget.Widget implements UI.Toolbar.ItemsProvider {
  constructor() {
    super();
    this.toolbarItemsInternal = [];
    this.toolbarItemsInternal.push(UI.Toolbar.Toolbar.createActionButton('elements.refresh-event-listeners'));
  }

  toolbarItems(): UI.Toolbar.ToolbarItem[] {
    return this.toolbarItemsInternal;
  }
}

After:

export const DEFAULT_VIEW = (input, _output, target) => {
  const {bindToAction} = UI.UIUtils;
  render(html`
    <div>
      <devtools-toolbar>
        <devtools-button ${bindToAction('elements.refresh-event-listeners')}></devtools-button>
      </devtools-toolbar>
    </div>`,
    target, {host: input});
};

Binding a setting to a checkbox

Use the bindToSetting directive to bind a boolean setting to a <devtools-checkbox> component.

Before:

class SomeWidget extends UI.Widget.Widget {
  constructor() {
    super();
    const toolbar = this.contentElement.createChild('devtools-toolbar');
    const showAllPropertiesSetting = Common.Settings.Settings.instance().createSetting('show-all-properties', false);
    toolbar.appendToolbarItem(new UI.Toolbar.ToolbarSettingCheckbox(
        showAllPropertiesSetting, i18nString(UIStrings.showAllTooltip), i18nString(UIStrings.showAll)));
  }
}

After:

export const DEFAULT_VIEW = (input, _output, target) => {
  const {bindToSetting} = UI.SettingsUI;
  const showAllPropertiesSetting = Common.Settings.Settings.instance().createSetting('show-all-properties', false);
  render(html`
    <div>
      <devtools-toolbar>
        <devtools-checkbox title=${i18nString(UIStrings.showAllTooltip)} ${bindToSetting(showAllPropertiesSetting)}>
          ${i18nString(UIStrings.showAll)}
        </devtools-checkbox>
      </devtools-toolbar>
    </div>`,
    target, {host: input});
};

Migrating UI.Toolbar.ToolbarComboBox

Replace the imperative creation of a ToolbarComboBox with a declarative <select> element.

Before:

class SomeWidget extends UI.Widget.Widget {
  constructor() {
    super();
    const toolbar = this.contentElement.createChild('devtools-toolbar');
    toolbar.appendToolbarItem(new UI.Toolbar.ToolbarComboBox(
       this.someToolbarComboBoxClicked.bind(this), 'Combox',
       'the-toolbar-combox', 'some-toolbar-combox'));
  }
}

After:

export const DEFAULT_VIEW = (input, _output, target) => {
  render(html`
    <div>
      <devtools-toolbar>
        <select class="the-toolbar-combox" title="Combox" aria-label="Combox"
            jslog=${VisualLogging.dropDown('some-toolbar-combox').track({change: true})}
            @change=${this.someToolbarComboBoxClicked.bind(this)}></select>
      </devtools-toolbar>
    </div>`,
    target, {host: input});
};

Migrating various Toolbar items

Replace various imperative UI.Toolbar methods like appendSeparator, appendSpacer, and setEnabled with their declarative equivalents.

Before:

class SomeWidget extends UI.Widget.Widget {
  constructor() {
    super();
    const toolbar = this.contentElement.createChild('devtools-toolbar');
    toolbar.wrappable = true;
    toolbar.appendSeparator();
    const combo = new UI.Toolbar.ToolbarComboBox(this.onSelect.bind(this), 'aria-label', undefined, 'combo-box');
    combo.createOption('Option 1', '1', 'option-1');
    const option2 = document.createElement('option');
    option2.value = '2';
    option2.textContent = 'Option 2';
    combo.addOption(option2);
    toolbar.appendToolbarItem(combo);
    toolbar.appendSpacer();
    const button = new UI.Toolbar.ToolbarButton('Click me', 'largeicon-add');
    button.setEnabled(false);
    toolbar.appendToolbarItem(button);
    const otherButton = new UI.Toolbar.ToolbarButton('Other button', 'largeicon-delete');
    otherButton.setEnabled(this.isEnabled);
    toolbar.appendToolbarItem(otherButton);
    toolbar.appendToolbarItem(new UI.Toolbar.ToolbarSeparator());
    toolbar.appendToolbarItem(new UI.Toolbar.ToolbarSeparator(false));
    toolbar.appendToolbarItem(new UI.Toolbar.ToolbarSeparator(true));
  }
}

After:

export const DEFAULT_VIEW = (input, _output, target) => {
  render(html`
    <div>
      <devtools-toolbar wrappable>
        <div class="toolbar-divider"></div>
        <select title="aria-label" aria-label="aria-label"
            jslog=${VisualLogging.dropDown('combo-box').track({change: true})}
            @change=${this.onSelect.bind(this)}>
          <option value="1" jslog=${VisualLogging.item('option-1').track({click: true})}>Option 1</option>
          <option value="2">Option 2</option>
        </select>
        <div class="toolbar-spacer"></div>
        <devtools-button title="Click me" .variant=${Buttons.Button.Variant.TOOLBAR}
            .iconName=${'largeicon-add'} disabled></devtools-button>
        <devtools-button title="Other button" ?disabled=${!this.isEnabled}
            .variant=${Buttons.Button.Variant.TOOLBAR} .iconName=${'largeicon-delete'}></devtools-button>
        <div class="toolbar-divider"></div>
        <div class="toolbar-divider"></div>
        <div class="toolbar-spacer"></div>
      </devtools-toolbar>
    </div>`,
    target, {host: input});
};

Migrating iframe creation

Replace document.createElement('iframe') and setAttribute calls with a declarative <iframe> tag in a lit-html template.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); const iframe = document.createElement('iframe'); iframe.setAttribute('sandbox', ''); iframe.tabIndex = -1; this.contentElement.appendChild(iframe); } }

After:



export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div> <iframe sandbox tabindex="-1"></iframe> </div>`, target, {host: input}); };

Migrating UI.UIUtils.createInput

Replace the createInput helper with a standard <input> element in a lit-html template.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); this.contentElement.appendChild(UI.UIUtils.createInput('add-source-map', 'text', 'url')); } }

After:



export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div> <input class="harmony-input add-source-map" spellcheck="false" type="text" jslog=${VisualLogging.textField('url').track({keydown: 'Enter', change: true})}> </div>`, target, {host: input}); };

Migrating SortableDataGrid, ViewportDataGrid, DataGridImpl

Replace the imperative SortableDataGrid, ViewportDataGrid, or DataGridImpl with the declarative <devtools-data-grid> component. Columns are defined using <th> elements inside a <table>.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); this.#columns = [ { id: 'node-id', title: i18nString(UIStrings.element), sortable: true, weight: 50, align: undefined, }, { id: 'declaration', title: i18nString(UIStrings.declaration), }, { id: 'source-url', title: i18nString(UIStrings.source), sortable: false, weight: 100, align: DataGrid.DataGrid.Align.RIGHT, }, ]; this.#dataGrid = new DataGrid.SortableDataGrid.SortableDataGrid({ displayName: i18nString(UIStrings.someTitle), columns: this.#columns, deleteCallback: undefined, refreshCallback: undefined, }); this.#dataGrid.setStriped(true); this.#dataGrid.addEventListener( DataGrid.DataGrid.Events.SORTING_CHANGED, this.#sortMediaQueryDataGrid.bind(this)); this.#dataGrid.asWidget().show(this.element); } }

After:



export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div> <devtools-data-grid name=${i18nString(UIStrings.someTitle)} striped @sort=${this.#sortMediaQueryDataGrid.bind(this)}> <table> <tr> <th id="node-id" weight="50" sortable>${i18nString(UIStrings.element)}</th> <th id="declaration">${i18nString(UIStrings.declaration)}</th> <th id="source-url" weight="100" align="right">${i18nString(UIStrings.source)}</th> </tr> </table> </devtools-data-grid> </div>`, target, {host: input}); };

Migrating DataGridNode.createCell

The createCell method in a DataGridNode can be refactored to return a lit-html template for the cell's content, making it declarative.

Before:


class ElementNode extends DataGrid.SortableDataGrid.SortableDataGridNode<ElementNode> { override createCell(columnId: string): HTMLElement { const cell = this.createTD(columnId); cell.classList.add('node-id'); cell.createChild('span', 'node-id-text').textContent = this.data.id; return cell; } }

After:


class ElementNode extends DataGrid.SortableDataGrid.SortableDataGridNode<ElementNode> { override createCell(columnId: string): HTMLElement { const cell = this.createTD(columnId); render(html` <td class="node-id"> <span class="node-id-text">${this.data.id}</span> </td>`, cell); return cell; } }

Migrating SplitWidget

Replace the imperative SplitWidget with the declarative <devtools-split-view> component. Nested widgets can be rendered using <devtools-widget>.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); this.#splitWidget = new UI.SplitWidget.SplitWidget(this.vertical, false, undefined, 200); this.#splitWidget.show(this.element); this.#mainContainer = new UI.SplitWidget.SplitWidget(true, true); this.#resultsContainer = new UI.Widget.EmptyWidget(); this.#elementContainer = new DetailsView(); this.#mainContainer.setMainWidget(this.#resultsContainer); this.#mainContainer.setSidebarWidget(this.#elementContainer); this.#mainContainer.setVertical(false); this.#mainContainer.setSecondIsSidebar(this.dockedLeft); this.#sideBar = new SidebarPanel(); this.#sideBar.setMinimumSize(100, 25); this.#splitWidget.setSidebarWidget(this.#sideBar); this.#splitWidget.setMainWidget(this.#mainContainer); } }

After:



export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div> <devtools-split-view direction=${this.vertical ? 'column' : 'row'} sidebar-position="first" sidebar-initial-size="200"> <devtools-widget slot="sidebar" .widgetConfig=${widgetConfig(SidebarPanel, {minimumSize: {width: 100, height: 25}})}></devtools-widget> <devtools-split-view direction="column" sidebar-position="second" slot="main" direction="row" sidebar-position="$this.dockedLeft ? 'second' : 'first'}"> <devtools-widget slot="main" .widgetConfig=${widgetConfig(UI.Widget.EmptyWidget)}></devtools-widget> <devtools-widget slot="sidebar" .widgetConfig=${widgetConfig(DetailsView)}></devtools-widget> </devtools-split-view> </devtools-split-view> </div>`, target, {host: input}); };

Migrating UI.Fragment

Replace UI.Fragment.Fragment.build with a standard lit-html template. To get a reference to an element, use the ref directive.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); const contrastFragment = UI.Fragment.Fragment.build` <div class="contrast-container-in-grid" $="contrast-container-element"> <span class="contrast-preview">Aa</span> <span>${contrastRatioString}</span> </div>`; this.contentElement.appendChild(contrastFragment.element()); } }

After:



export const DEFAULT_VIEW = (input, output, target) => { render(html` <div> <div class="contrast-container-in-grid" ${ref(e => { output.contrastContainerElement = e; })}> <span class="contrast-preview">Aa</span> <span>${contrastRatioString}</span> </div> </div>`, target, {host: input}); };

Migrating UI.ARIAUtils helpers

Replace calls to UI.ARIAUtils helper functions with the corresponding ARIA attributes directly in the lit-html template.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); this.button = this.contentElement.createChild('button'); UI.ARIAUtils.markAsMenuButton(this.button); const tree = this.contentElement.createChild('ul'); UI.ARIAUtils.markAsTree(tree); UI.ARIAUtils.markAsTreeitem(tree.createChild('li')); const alert = this.contentElement.createChild('span'); alert.textContent = 'Alert'; UI.ARIAUtils.markAsAlert(alert); const slider = this.contentElement.createChild('input'); UI.ARIAUtils.markAsSlider(slider, 10); UI.ARIAUtils.setDescription(this.button, 'Some button'); UI.ARIAUtils.setInvalid(slider, this.valid); const progress = this.contentElement.createChild('div'); UI.ARIAUtils.markAsProgressBar(progress); UI.ARIAUtils.setProgressBarValue(progress, 0.5, '50% done'); } }

After:



export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div> <button role="button" aria-haspopup="true" aria-description="Some button"></button> <ul role="tree"> <li role="treeitem"></li> </ul> <span role="alert" aria-live="polite">Alert</span> <input role="slider" aria-valuemin="10" aria-valuemax="100" aria-invalid=${this.valid}> <div role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0.5" aria-valuetext="50% done"></div> </div>`, target, {host: input}); };

Migrating EmptyWidget

Replace the imperative EmptyWidget with a declarative <devtools-widget> and configure it with widgetConfig to render an EmptyWidget.

Before:


class SomeWidget extends UI.Widget.Widget { constructor() { super(); const widget = new UI.EmptyWidget.EmptyWidget(i18nString(UIStrings.nothingToSeeHere), this.explanation); widget.link = 'http://www.google.com'; widget.show(this.element); } }

After:



export const DEFAULT_VIEW = (input, _output, target) => { render(html` <div> <devtools-widget .widgetConfig=${widgetConfig(UI.EmptyWidget.EmptyWidget,{ header: i18nString(UIStrings.nothingToSeeHere), text: this.explanation, link: 'http://www.google.com',})}></devtools-widget> </div>`, target, {host: input}); };

Migrating TextPrompt

Replace imperative TextPrompt creation with the declarative <devtools-prompt> component, providing completions via <datalist>.

Before:

class SomeWidget extends UI.Widget.Widget {
  constructor() {
    super();
    const prompt = new UI.TextPrompt.TextPrompt();
    prompt.initialize(async (expression, prefix) => {
      const options = ['completion1', 'completion2'];
      return options.filter(opt => opt.startsWith(prefix)).map(text => ({text}));
    });
    const promptElement = this.contentElement.createChild('span');
    prompt.attach(promptElement);
  }
}

After:

export const DEFAULT_VIEW = (input, _output, target) => {
  render(html`
    <div>
      <datalist id="my-completions">
        <option>completion1</option>
        <option>completion2</option>
      </datalist>
      <devtools-prompt completions="my-completions" editing></devtools-prompt>
    </div>`,
    target, {host: input});
};

Migrating TreeOutline

Replace imperative TreeOutline and TreeElement creation with the declarative <devtools-tree> component.

Before:

class SomeWidget extends UI.Widget.Widget {
  constructor() {
    super();
    const tree = new UI.TreeOutline.TreeOutlineInShadow();
    this.contentElement.appendChild(tree.element);

    const root = tree.rootElement();
    const node1 = new UI.TreeOutline.TreeElement('Node 1');
    root.appendChild(node1);

    const node2 = new UI.TreeOutline.TreeElement('Node 2', true);
    root.appendChild(node2);

    const child1 = new UI.TreeOutline.TreeElement('Child 1');
    node2.appendChild(child1);
  }
}

After:

export const DEFAULT_VIEW = (input, _output, target) => {
  render(html`
    <div>
      <devtools-tree .template=${html`
        <ul role="tree">
          <li role="treeitem">Node 1</li>
          <li role="treeitem">
            Node 2
            <ul role="group" hidden>
              <li role="treeitem">Child 1</li>
            </ul>
          </li>
        </ul>
      `}></devtools-tree>
    </div>`,
    target, {host: input});
};

Refactoring UI.Toolbar.Provider

As part of the migration, sometimes classes need to be broken up into smaller pieces. Classes implementing UI.Toolbar.Provider logic are good examples of this, if they implement View logic in addition to their UI.Toolbar.Provider responsibilities. The View logic needs to be moved to a separate class.

Before:

export class NodeIndicator implements UI.Toolbar.Provider {
  readonly #element: Element;
  readonly #item: UI.Toolbar.ToolbarItem;

  private constructor() {
    // Creates `this.#element` and `this.#item` imperatively (e.g. using document.createElement/createChild).
  }
  static instance(opts: { forceNew: boolean|null, } = {forceNew: null}): NodeIndicator {
    // Creates an instance of this class and returns it.
  }
  #update(input): void { /* Handles updates to `this.#element` and `this.#item`. */}
  item(): UI.Toolbar.ToolbarItem|null {
    return this.#item;
  }
}

After:

export const DEFAULT_VIEW: View = (input, output, target) => {
  // Implementation of the View using Lit.render() (omitted for brevity).
};

export class NodeIndicator extends UI.Widget.Widget {
  readonly #view: View;

  constructor(element?: HTMLElement, view = DEFAULT_VIEW) {
    super(element, {useShadowDom: true});
    this.#view = view;
  }

  override performUpdate(): void {
    const input = {
      // Whatever input the View needs.
    };
    this.#view(input, {}, this.contentElement);
  }
}

let nodeIndicatorProviderInstance: NodeIndicatorProvider;
export class NodeIndicatorProvider implements UI.Toolbar.Provider {
  #toolbarItem: UI.Toolbar.ToolbarItem;
  #widgetElement: UI.Widget.WidgetElement<NodeIndicator>;

  private constructor() {
    this.#widgetElement = document.createElement('devtools-widget') as UI.Widget.WidgetElement<NodeIndicator>;
    this.#widgetElement.widgetConfig = UI.Widget.widgetConfig(NodeIndicator);

    this.#toolbarItem = new UI.Toolbar.ToolbarItem(this.#widgetElement);
    this.#toolbarItem.setVisible(false);
  }

  item(): UI.Toolbar.ToolbarItem|null {
    return this.#toolbarItem;
  }

  static instance(opts: {forceNew: boolean|null} = {forceNew: null}): NodeIndicatorProvider {
    const {forceNew} = opts;
    if (!nodeIndicatorProviderInstance || forceNew) {
      nodeIndicatorProviderInstance = new NodeIndicatorProvider();
    }

    return nodeIndicatorProviderInstance;
  }
}

Highlighting text

(UI.UIUtils.highlightRangesWithStyleClass or Highlighting.HighlightManager)

Use the <devtools-highlight> component to highlight text ranges within its container. The component takes two attributes: ranges, which is a space-separated list of offset,length pairs, and current-range, which is a single offset,length pair to highlight with a different color.

The component will automatically sort and merge the ranges provided.

<div style="position:relative">
  <devtools-highlight ranges="10,2 1,3 2,3" current-range="5,3">
    This is some text to highlight.
  </devtools-highlight>
</div>

In this example, the ranges 1,3 and 2,3 will be merged into 1,4. The ranges 10,2 and the current range 5,3 will also be highlighted.