mirror of
https://github.com/servo/servo.git
synced 2025-08-04 05:00:08 +01:00
Add TODO comments for a recently opened issue
This commit is contained in:
parent
dfb8929b00
commit
c0ea1e6330
1 changed files with 2 additions and 0 deletions
|
@ -1105,6 +1105,7 @@ impl<'a> DocumentMethods for JSRef<'a, Document> {
|
||||||
TreeWalker::new(self, root, whatToShow, filter)
|
TreeWalker::new(self, root, whatToShow, filter)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Support root SVG namespace: https://github.com/servo/servo/issues/5315
|
||||||
// http://www.whatwg.org/specs/web-apps/current-work/#document.title
|
// http://www.whatwg.org/specs/web-apps/current-work/#document.title
|
||||||
fn Title(self) -> DOMString {
|
fn Title(self) -> DOMString {
|
||||||
let mut title = String::new();
|
let mut title = String::new();
|
||||||
|
@ -1126,6 +1127,7 @@ impl<'a> DocumentMethods for JSRef<'a, Document> {
|
||||||
v.connect(" ")
|
v.connect(" ")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Support root SVG namespace: https://github.com/servo/servo/issues/5315
|
||||||
// http://www.whatwg.org/specs/web-apps/current-work/#document.title
|
// http://www.whatwg.org/specs/web-apps/current-work/#document.title
|
||||||
fn SetTitle(self, title: DOMString) -> ErrorResult {
|
fn SetTitle(self, title: DOMString) -> ErrorResult {
|
||||||
self.GetDocumentElement().root().map(|root| {
|
self.GetDocumentElement().root().map(|root| {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue