Library changes

This commit is contained in:
Keegan McAllister 2013-08-09 13:24:10 -07:00
parent ffe60ea027
commit be061a9aa0
45 changed files with 167 additions and 183 deletions

View file

@ -19,7 +19,6 @@ use js::{JSVAL_NULL, JSPROP_ENUMERATE};
use std::cast;
use std::comm;
use std::comm::Chan;
use std::int;
use std::io;
use std::ptr;
use js::jsapi::JSVal;
@ -68,7 +67,7 @@ impl Window {
pub fn Document(&self) -> AbstractDocument {
unsafe {
(*self.page).frame.get().document
(*self.page).frame.unwrap().document
}
}