aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/layout_interface.rs
diff options
context:
space:
mode:
authoraditya <dev@chimeracoder.net>2015-04-02 12:17:12 -0400
committeraditya <dev@chimeracoder.net>2015-04-02 16:09:48 -0400
commita3eaacccf60fc05f43f353e859ae2807cec12f59 (patch)
treeb78fbb87828637e4ce1a6a64d8358cc944436ce1 /components/script/layout_interface.rs
parent85808c1cdd39a3afdc9815247ceb6f0fb7e9a31b (diff)
downloadservo-a3eaacccf60fc05f43f353e859ae2807cec12f59.tar.gz
servo-a3eaacccf60fc05f43f353e859ae2807cec12f59.zip
Move iframe and url fields from Reflow to LayoutTask and LayoutTaskFactory
* Fix #5466
Diffstat (limited to 'components/script/layout_interface.rs')
-rw-r--r--components/script/layout_interface.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/components/script/layout_interface.rs b/components/script/layout_interface.rs
index e0671763b13..d04acc36c67 100644
--- a/components/script/layout_interface.rs
+++ b/components/script/layout_interface.rs
@@ -108,10 +108,6 @@ pub enum ReflowQueryType {
pub struct Reflow {
/// The goal of reflow: either to render to the screen or to flush layout info for script.
pub goal: ReflowGoal,
- /// The URL of the page.
- pub url: Url,
- /// Is the current reflow of an iframe, as opposed to a root window?
- pub iframe: bool,
/// A clipping rectangle for the page, an enlarged rectangle containing the viewport.
pub page_clip_rect: Rect<Au>,
}