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.
This commit is contained in:
bors-servo 2014-01-17 06:07:33 -08:00
commit f5ee8270f4

View file

@ -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
}