mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
Auto merge of #23236 - swarnimarun:loop_patch, r=ferjm
Implement HTMLMediaElement.loop Attribute <!-- Please describe your changes on the following line: --> Work done for Implementing HTMLMediaElement.loop Attribute, - Uncomment `loop` attribute from webidl - Add make_bool macros for Loop and SetLoop functions - Update the required tests --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes fix #22290 <!-- Either: --> - [x] There are tests for these changes <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/23236) <!-- Reviewable:end -->
This commit is contained in:
commit
67beaa46e2
4 changed files with 15 additions and 17 deletions
|
@ -1548,17 +1548,11 @@ enum PlaybackDirection {
|
|||
// XXX Placeholder implementations for:
|
||||
//
|
||||
// - https://github.com/servo/servo/issues/22293
|
||||
// - https://github.com/servo/servo/issues/22321
|
||||
impl HTMLMediaElement {
|
||||
// https://github.com/servo/servo/issues/22293
|
||||
fn direction_of_playback(&self) -> PlaybackDirection {
|
||||
PlaybackDirection::Forwards
|
||||
}
|
||||
|
||||
// https://github.com/servo/servo/pull/22321
|
||||
fn Loop(&self) -> bool {
|
||||
false
|
||||
}
|
||||
}
|
||||
|
||||
impl Drop for HTMLMediaElement {
|
||||
|
@ -1587,6 +1581,11 @@ impl HTMLMediaElementMethods for HTMLMediaElement {
|
|||
// https://html.spec.whatwg.org/multipage/#dom-media-autoplay
|
||||
make_bool_setter!(SetAutoplay, "autoplay");
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/#attr-media-loop
|
||||
make_bool_getter!(Loop, "loop");
|
||||
// https://html.spec.whatwg.org/multipage/#attr-media-loop
|
||||
make_bool_setter!(SetLoop, "loop");
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/#dom-media-defaultmuted
|
||||
make_bool_getter!(DefaultMuted, "muted");
|
||||
// https://html.spec.whatwg.org/multipage/#dom-media-defaultmuted
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue