aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTim Kuehn <tkuehn@cmu.edu>2013-08-06 13:05:35 -0700
committerTim Kuehn <tkuehn@cmu.edu>2013-08-19 19:11:11 -0400
commit5a1a56507b49f9747e3899041033c24b00ead7a3 (patch)
treea3408fd75463ce0730d32bc8e1f183388aa114c9 /src
parentf514a8b36a1336b4d27160122446787ebc4cbf56 (diff)
downloadservo-5a1a56507b49f9747e3899041033c24b00ead7a3.tar.gz
servo-5a1a56507b49f9747e3899041033c24b00ead7a3.zip
add comment re: clipping rect
Diffstat (limited to 'src')
-rw-r--r--src/components/main/constellation.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/main/constellation.rs b/src/components/main/constellation.rs
index c0f28d642e2..a6f1b6f9a40 100644
--- a/src/components/main/constellation.rs
+++ b/src/components/main/constellation.rs
@@ -64,6 +64,8 @@ impl Clone for FrameTree {
struct ChildFrameTree {
frame_tree: @mut FrameTree,
+ /// Clipping rect representing the size and position, in page coordinates, of the visible
+ /// region of the child frame relative to the parent.
rect: Option<Rect<f32>>,
}