chromium/third_party/blink/renderer/core/highlight/highlight_pointer_event.idl

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

dictionary HighlightPointerEventInit : PointerEventInit {
  Range? range = null;
};

[
  RuntimeEnabled = HighlightPointerEvents,
  Exposed = Window
] interface HighlightPointerEvent : PointerEvent {
  readonly attribute Range? range;
};