mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-10 01:59:31 +00:00
LibWeb: Implement the width
and height
attributes where missing
This change adds the `width` and `height` properties to `HTMLVideoElement` and `HTMLSourceElement`. These properties reflect their respective content attribute values.
This commit is contained in:
parent
9f9aa62128
commit
2a7cf1c588
Notes:
sideshowbarker
2024-07-17 06:09:44 +09:00
Author: https://github.com/tcl3
Commit: 2a7cf1c588
Pull-request: https://github.com/SerenityOS/serenity/pull/24402
Reviewed-by: https://github.com/mattco98
4 changed files with 22 additions and 4 deletions
|
@ -16,3 +16,15 @@ object.hspace after setting to 2147483648: 0
|
||||||
object.vspace after setting to -1: 0
|
object.vspace after setting to -1: 0
|
||||||
object.vspace after setting to 20: 20
|
object.vspace after setting to 20: 20
|
||||||
object.vspace after setting to 2147483648: 0
|
object.vspace after setting to 2147483648: 0
|
||||||
|
source.width after setting to -1: 0
|
||||||
|
source.width after setting to 20: 20
|
||||||
|
source.width after setting to 2147483648: 0
|
||||||
|
source.height after setting to -1: 0
|
||||||
|
source.height after setting to 20: 20
|
||||||
|
source.height after setting to 2147483648: 0
|
||||||
|
video.width after setting to -1: 0
|
||||||
|
video.width after setting to 20: 20
|
||||||
|
video.width after setting to 2147483648: 0
|
||||||
|
video.height after setting to -1: 0
|
||||||
|
video.height after setting to 20: 20
|
||||||
|
video.height after setting to 2147483648: 0
|
||||||
|
|
|
@ -19,5 +19,11 @@
|
||||||
testIntegerReflectedProperty(tagName, property);
|
testIntegerReflectedProperty(tagName, property);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (const tagName of ["source", "video"]) {
|
||||||
|
for (const property of ["width", "height"]) {
|
||||||
|
testIntegerReflectedProperty(tagName, property);
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -11,7 +11,7 @@ interface HTMLSourceElement : HTMLElement {
|
||||||
[CEReactions, Reflect] attribute DOMString srcset;
|
[CEReactions, Reflect] attribute DOMString srcset;
|
||||||
[CEReactions, Reflect] attribute DOMString sizes;
|
[CEReactions, Reflect] attribute DOMString sizes;
|
||||||
[CEReactions, Reflect] attribute DOMString media;
|
[CEReactions, Reflect] attribute DOMString media;
|
||||||
[FIXME, CEReactions, Reflect] attribute unsigned long width;
|
[CEReactions, Reflect] attribute unsigned long width;
|
||||||
[FIXME, CEReactions, Reflect] attribute unsigned long height;
|
[CEReactions, Reflect] attribute unsigned long height;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -6,8 +6,8 @@ interface HTMLVideoElement : HTMLMediaElement {
|
||||||
|
|
||||||
[HTMLConstructor] constructor();
|
[HTMLConstructor] constructor();
|
||||||
|
|
||||||
[FIXME, CEReactions] attribute unsigned long width;
|
[CEReactions, Reflect] attribute unsigned long width;
|
||||||
[FIXME, CEReactions] attribute unsigned long height;
|
[CEReactions, Reflect] attribute unsigned long height;
|
||||||
readonly attribute unsigned long videoWidth;
|
readonly attribute unsigned long videoWidth;
|
||||||
readonly attribute unsigned long videoHeight;
|
readonly attribute unsigned long videoHeight;
|
||||||
[CEReactions, Reflect] attribute USVString poster;
|
[CEReactions, Reflect] attribute USVString poster;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue