aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-03-23 07:57:50 -0600
committerbors-servo <metajack+bors@gmail.com>2015-03-23 07:57:50 -0600
commitca79abe45871b4bfe8e8162cb39f8b6bacd0b0b6 (patch)
tree17b71ff48597cbf1d00b3c7a004836b793270a89
parentf9826c3ae80a9d859fc067dcceddf3ab105656f6 (diff)
parentc0ea1e633045b0b4592808b426c4d3e08ad77537 (diff)
downloadservo-ca79abe45871b4bfe8e8162cb39f8b6bacd0b0b6.tar.gz
servo-ca79abe45871b4bfe8e8162cb39f8b6bacd0b0b6.zip
auto merge of #5321 : frewsxcv/servo/patch-1, r=Ms2ger
-rw-r--r--components/script/dom/document.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/dom/document.rs b/components/script/dom/document.rs
index bde9652cf1f..90eb4828087 100644
--- a/components/script/dom/document.rs
+++ b/components/script/dom/document.rs
@@ -1106,6 +1106,7 @@ impl<'a> DocumentMethods for JSRef<'a, Document> {
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
fn Title(self) -> DOMString {
let mut title = String::new();
@@ -1127,6 +1128,7 @@ impl<'a> DocumentMethods for JSRef<'a, Document> {
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
fn SetTitle(self, title: DOMString) -> ErrorResult {
self.GetDocumentElement().root().map(|root| {