LibWeb: Use [URL] extended attribute for HTMLVideoElement.poster

This commit is contained in:
Tim Ledbetter
2024-11-26 16:26:35 +00:00
committed by Andreas Kling
parent 8ad3479e0e
commit 67d05b0104
3 changed files with 3 additions and 1 deletions

View File

@@ -10,7 +10,7 @@ interface HTMLVideoElement : HTMLMediaElement {
[CEReactions, Reflect] attribute unsigned long height;
readonly attribute unsigned long videoWidth;
readonly attribute unsigned long videoHeight;
[CEReactions, Reflect] attribute USVString poster;
[CEReactions, Reflect, URL] attribute USVString poster;
[CEReactions, Reflect=playsinline] attribute boolean playsInline;
};