aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbors-servo <release+servo@mozilla.com>2014-01-17 06:07:33 -0800
committerbors-servo <release+servo@mozilla.com>2014-01-17 06:07:33 -0800
commitf5ee8270f46d27b5040392804a590d7914605999 (patch)
treecab6fd8e9df43f0ac29786e8fb29106a9f4ea1ed /src
parent156461e4ce03ba60dde0a3295e39558045def49f (diff)
parentcdf29d4394f2ed2cfa4043cc0a55035e8cb8d6e8 (diff)
downloadservo-f5ee8270f46d27b5040392804a590d7914605999.tar.gz
servo-f5ee8270f46d27b5040392804a590d7914605999.zip
auto merge of #1518 : brunoabinader/servo/remove-document-title, r=Ms2ger
There is no current use for this variable. This is a subtask for #1428.
Diffstat (limited to 'src')
-rw-r--r--src/components/script/dom/document.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/components/script/dom/document.rs b/src/components/script/dom/document.rs
index c85a6c63ab2..aa9a0baa7ce 100644
--- a/src/components/script/dom/document.rs
+++ b/src/components/script/dom/document.rs
@@ -87,7 +87,6 @@ pub struct Document {
reflector_: Reflector,
window: @mut Window,
doctype: DocumentType,
- title: ~str,
idmap: HashMap<DOMString, AbstractNode>,
implementation: Option<@mut DOMImplementation>
}
@@ -120,7 +119,6 @@ impl Document {
reflector_: Reflector::new(),
window: window,
doctype: doctype,
- title: ~"",
idmap: HashMap::new(),
implementation: None
}