chromium/third_party/blink/renderer/modules/mediasession/chapter_information.idl

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

// https://wicg.github.io/mediasession/#dictdef-chapterinformation

[
    Exposed=Window,
    RuntimeEnabled=MediaSessionChapterInformation
] interface ChapterInformation {
  readonly attribute DOMString title;
  readonly attribute double startTime;
  [SameObject] readonly attribute FrozenArray<MediaImage> artwork;
};