diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2017-09-19 23:28:49 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2017-09-23 10:01:24 +0200 |
commit | 9aaa42b0615caa051139d3a892872aedc74e3e90 (patch) | |
tree | c26d40889a3f3b7c18b3fcef8a195b81a7561f32 /components/script/dom/htmlmediaelement.rs | |
parent | 5a6b90b14ff709eab41493a05c8235c522d35250 (diff) | |
download | servo-9aaa42b0615caa051139d3a892872aedc74e3e90.tar.gz servo-9aaa42b0615caa051139d3a892872aedc74e3e90.zip |
Remove some obsolete comments
Diffstat (limited to 'components/script/dom/htmlmediaelement.rs')
-rw-r--r-- | components/script/dom/htmlmediaelement.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/components/script/dom/htmlmediaelement.rs b/components/script/dom/htmlmediaelement.rs index 3700a64364e..fc1193e198b 100644 --- a/components/script/dom/htmlmediaelement.rs +++ b/components/script/dom/htmlmediaelement.rs @@ -47,10 +47,8 @@ use time::{self, Timespec, Duration}; pub struct HTMLMediaElement { htmlelement: HTMLElement, /// https://html.spec.whatwg.org/multipage/#dom-media-networkstate - // FIXME(nox): Use an enum. network_state: Cell<NetworkState>, /// https://html.spec.whatwg.org/multipage/#dom-media-readystate - // FIXME(nox): Use an enum. ready_state: Cell<ReadyState>, /// https://html.spec.whatwg.org/multipage/#dom-media-currentsrc current_src: DOMRefCell<String>, @@ -291,9 +289,6 @@ impl HTMLMediaElement { &window, ); } - - // TODO Step 2: Media controller. - // FIXME(nox): There is no step 2 in the spec. } // https://html.spec.whatwg.org/multipage/#concept-media-load-algorithm @@ -327,7 +322,6 @@ impl HTMLMediaElement { } // https://html.spec.whatwg.org/multipage/#concept-media-load-algorithm - // FIXME(nox): Why does this need to be passed the base URL? fn resource_selection_algorithm_sync(&self, base_url: ServoUrl) { // Step 5. // FIXME(nox): Maybe populate the list of pending text tracks. |