blob: 2b1359142cd4fa1d78c9daa735a24c6e19c53366 [file] [log] [blame]
// 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;
};