mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Implement HTMLMediaElement poster attribute
This commit is contained in:
parent
b49e7517a3
commit
5c5b5aae0f
8 changed files with 383 additions and 60 deletions
|
@ -6,6 +6,7 @@ use crate::dom::attr::Attr;
|
|||
use crate::dom::bindings::inheritance::Castable;
|
||||
use crate::dom::bindings::inheritance::ElementTypeId;
|
||||
use crate::dom::bindings::inheritance::HTMLElementTypeId;
|
||||
use crate::dom::bindings::inheritance::HTMLMediaElementTypeId;
|
||||
use crate::dom::bindings::inheritance::NodeTypeId;
|
||||
use crate::dom::bindings::inheritance::SVGElementTypeId;
|
||||
use crate::dom::bindings::inheritance::SVGGraphicsElementTypeId;
|
||||
|
@ -49,6 +50,7 @@ use crate::dom::htmltablesectionelement::HTMLTableSectionElement;
|
|||
use crate::dom::htmltemplateelement::HTMLTemplateElement;
|
||||
use crate::dom::htmltextareaelement::HTMLTextAreaElement;
|
||||
use crate::dom::htmltitleelement::HTMLTitleElement;
|
||||
use crate::dom::htmlvideoelement::HTMLVideoElement;
|
||||
use crate::dom::node::{ChildrenMutation, CloneChildrenFlag, Node, UnbindContext};
|
||||
use crate::dom::svgsvgelement::SVGSVGElement;
|
||||
use html5ever::LocalName;
|
||||
|
@ -208,8 +210,13 @@ pub fn vtable_for(node: &Node) -> &dyn VirtualMethods {
|
|||
NodeTypeId::Element(ElementTypeId::HTMLElement(HTMLElementTypeId::HTMLLinkElement)) => {
|
||||
node.downcast::<HTMLLinkElement>().unwrap() as &dyn VirtualMethods
|
||||
},
|
||||
NodeTypeId::Element(ElementTypeId::HTMLElement(HTMLElementTypeId::HTMLMediaElement(_))) => {
|
||||
node.downcast::<HTMLMediaElement>().unwrap() as &dyn VirtualMethods
|
||||
NodeTypeId::Element(ElementTypeId::HTMLElement(HTMLElementTypeId::HTMLMediaElement(
|
||||
media_el,
|
||||
))) => match media_el {
|
||||
HTMLMediaElementTypeId::HTMLVideoElement => {
|
||||
node.downcast::<HTMLVideoElement>().unwrap() as &dyn VirtualMethods
|
||||
},
|
||||
_ => node.downcast::<HTMLMediaElement>().unwrap() as &dyn VirtualMethods,
|
||||
},
|
||||
NodeTypeId::Element(ElementTypeId::HTMLElement(HTMLElementTypeId::HTMLMetaElement)) => {
|
||||
node.downcast::<HTMLMetaElement>().unwrap() as &dyn VirtualMethods
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue