mirror of
https://github.com/servo/servo.git
synced 2025-07-24 15:50:21 +01:00
Remove some obsolete comments
This commit is contained in:
parent
5a6b90b14f
commit
9aaa42b061
1 changed files with 0 additions and 6 deletions
|
@ -47,10 +47,8 @@ use time::{self, Timespec, Duration};
|
||||||
pub struct HTMLMediaElement {
|
pub struct HTMLMediaElement {
|
||||||
htmlelement: HTMLElement,
|
htmlelement: HTMLElement,
|
||||||
/// https://html.spec.whatwg.org/multipage/#dom-media-networkstate
|
/// https://html.spec.whatwg.org/multipage/#dom-media-networkstate
|
||||||
// FIXME(nox): Use an enum.
|
|
||||||
network_state: Cell<NetworkState>,
|
network_state: Cell<NetworkState>,
|
||||||
/// https://html.spec.whatwg.org/multipage/#dom-media-readystate
|
/// https://html.spec.whatwg.org/multipage/#dom-media-readystate
|
||||||
// FIXME(nox): Use an enum.
|
|
||||||
ready_state: Cell<ReadyState>,
|
ready_state: Cell<ReadyState>,
|
||||||
/// https://html.spec.whatwg.org/multipage/#dom-media-currentsrc
|
/// https://html.spec.whatwg.org/multipage/#dom-media-currentsrc
|
||||||
current_src: DOMRefCell<String>,
|
current_src: DOMRefCell<String>,
|
||||||
|
@ -291,9 +289,6 @@ impl HTMLMediaElement {
|
||||||
&window,
|
&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
|
// 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
|
// 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) {
|
fn resource_selection_algorithm_sync(&self, base_url: ServoUrl) {
|
||||||
// Step 5.
|
// Step 5.
|
||||||
// FIXME(nox): Maybe populate the list of pending text tracks.
|
// FIXME(nox): Maybe populate the list of pending text tracks.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue