forked from mirrors/gecko-dev
<!-- Please describe your changes on the following line: --> --- <!-- 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 part of #12967, content parsing will come as a separate PR. <!-- Either: --> - [X] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> Source-Repo: https://github.com/servo/servo Source-Revision: 8992b654102f83bb809fa230ea3a5b84c2758946
56 lines
2 KiB
Rust
56 lines
2 KiB
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
use dom::bindings::codegen::Bindings::ElementBinding::ElementBinding::ElementMethods;
|
|
use dom::bindings::codegen::Bindings::HTMLTimeElementBinding;
|
|
use dom::bindings::codegen::Bindings::HTMLTimeElementBinding::HTMLTimeElementMethods;
|
|
use dom::bindings::inheritance::Castable;
|
|
use dom::bindings::js::Root;
|
|
use dom::bindings::str::DOMString;
|
|
use dom::document::Document;
|
|
use dom::element::Element;
|
|
use dom::htmlelement::HTMLElement;
|
|
use dom::node::Node;
|
|
use html5ever_atoms::LocalName;
|
|
|
|
#[dom_struct]
|
|
pub struct HTMLTimeElement {
|
|
htmlelement: HTMLElement,
|
|
}
|
|
|
|
impl HTMLTimeElement {
|
|
fn new_inherited(local_name: LocalName, prefix: Option<DOMString>, document: &Document) -> HTMLTimeElement {
|
|
HTMLTimeElement {
|
|
htmlelement: HTMLElement::new_inherited(local_name, prefix, document),
|
|
}
|
|
}
|
|
|
|
#[allow(unrooted_must_root)]
|
|
pub fn new(local_name: LocalName,
|
|
prefix: Option<DOMString>,
|
|
document: &Document) -> Root<HTMLTimeElement> {
|
|
Node::reflect_node(box HTMLTimeElement::new_inherited(local_name, prefix, document),
|
|
document,
|
|
HTMLTimeElementBinding::Wrap)
|
|
}
|
|
}
|
|
|
|
impl HTMLTimeElementMethods for HTMLTimeElement {
|
|
// https://html.spec.whatwg.org/multipage/#dom-time-datetime
|
|
//make_getter!(DateTime, "datetime");
|
|
fn DateTime(&self) -> DOMString {
|
|
let element = self.upcast::<Element>();
|
|
if element.has_attribute(&local_name!("datetime")) {
|
|
return element.get_string_attribute(&local_name!("datetime"))
|
|
} else {
|
|
match element.GetInnerHTML() {
|
|
Ok(x) => x,
|
|
_ => DOMString::new(),
|
|
}
|
|
}
|
|
}
|
|
|
|
// https://html.spec.whatwg.org/multipage/#dom-time-datetime
|
|
make_setter!(SetDateTime, "datetime");
|
|
}
|