chromium/third_party/blink/renderer/core/frame/directive.idl

// 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.

// https://github.com/WICG/ScrollToTextFragment
enum DirectiveType { "text" };

[
    Exposed=Window,
    RuntimeEnabled=TextFragmentAPI
] interface Directive {
  readonly attribute DirectiveType type;
  DOMString toString();
};