Remove Document's unused 'title'

There is no current use for this variable.

This is a subtask for #1428.
This commit is contained in:
Bruno de Oliveira Abinader 2014-01-17 10:00:50 -04:00
parent 156461e4ce
commit cdf29d4394

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
}