aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/script_task.rs
diff options
context:
space:
mode:
authorMs2ger <ms2ger@gmail.com>2014-05-14 17:58:40 +0200
committerMs2ger <ms2ger@gmail.com>2014-05-14 17:58:40 +0200
commit765cea73d94f5b2a17272a895e0d99cf239e5b81 (patch)
tree9e9db25a25c7a4de40f0207d8d0a398099d78721 /src/components/script/script_task.rs
parent85285113e436eb1bfb8695dc23fc26878ecbf721 (diff)
downloadservo-765cea73d94f5b2a17272a895e0d99cf239e5b81.tar.gz
servo-765cea73d94f5b2a17272a895e0d99cf239e5b81.zip
Implement iframe.contentWindow.
Diffstat (limited to 'src/components/script/script_task.rs')
-rw-r--r--src/components/script/script_task.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/script_task.rs b/src/components/script/script_task.rs
index 02c19c52dd3..0ce993d5e19 100644
--- a/src/components/script/script_task.rs
+++ b/src/components/script/script_task.rs
@@ -173,7 +173,7 @@ pub struct PageIterator {
stack: Vec<Rc<Page>>,
}
-trait IterablePage {
+pub trait IterablePage {
fn iter(&self) -> PageIterator;
fn find(&self, id: PipelineId) -> Option<Rc<Page>>;
}