script: Correct data type of poster in HTMLVideoElement.webidl (#43341)

Correct data type of poster in `HTMLVideoElement` interface
Successful compilation is enough to verify the change.

Testing:  `tests/wpt/meta/html/dom/reflection-embedded.html`

---------

Signed-off-by: Shubham Gupta <shubham.gupta@chromium.org>
This commit is contained in:
Shubham Gupta
2026-03-17 18:04:30 +08:00
committed by GitHub
parent 9a8571efcc
commit 89a4a4e24c
3 changed files with 4 additions and 124 deletions

View File

@@ -11,7 +11,7 @@ interface HTMLVideoElement : HTMLMediaElement {
[CEReactions] attribute unsigned long height;
readonly attribute unsigned long videoWidth;
readonly attribute unsigned long videoHeight;
[CEReactions] attribute DOMString poster;
[CEReactions] attribute USVString poster;
};
partial interface HTMLVideoElement {