Skip to content

Commit

Permalink
Reverting to empty string + content
Browse files Browse the repository at this point in the history
  • Loading branch information
youennf committed Jan 23, 2025
1 parent fdab4e7 commit d7e2f94
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -1088,7 +1088,7 @@ dictionary MediaMetadataInit {
DOMString title = "";
DOMString artist = "";
DOMString album = "";
MediaKind kind = "other";
MediaKind kind = "";
sequence<MediaImage> artwork = [];
sequence<ChapterInformationInit> chapterInfo = [];
};
Expand All @@ -1100,7 +1100,8 @@ enum MediaKind {
"opening-credits",
"post-credits-scene",
"summary",
"other"
"content",
""
};
</pre>

Expand Down Expand Up @@ -1150,8 +1151,11 @@ enum MediaKind {
typically happening at the beginning of a TV series episode and summarizing past episodes.
</li>
<li>
<dfn enum-value for=MediaKind>other</dfn>: the default value of media content,
it represents any other value of a part of media content.
<dfn enum-value for=MediaKind>content</dfn>: the media content represents the main media content,
like a song or a TV series episode..
</li>
<li>
the empty string: the default value of media content, it represents any other value of a part of media content.
</li>
</ul>
<p class=note>
Expand Down

0 comments on commit d7e2f94

Please sign in to comment.