From c0ea1e633045b0b4592808b426c4d3e08ad77537 Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Sun, 22 Mar 2015 22:23:06 -0400 Subject: [PATCH] Add TODO comments for a recently opened issue --- components/script/dom/document.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/script/dom/document.rs b/components/script/dom/document.rs index d6e5f49b433..46463d6bc6a 100644 --- a/components/script/dom/document.rs +++ b/components/script/dom/document.rs @@ -1105,6 +1105,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(); @@ -1126,6 +1127,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| {