diff options
author | Emilio Cobos Álvarez <ecoal95@gmail.com> | 2016-08-08 12:00:14 -0700 |
---|---|---|
committer | Emilio Cobos Álvarez <ecoal95@gmail.com> | 2016-08-08 13:03:55 -0700 |
commit | 28d7c2dca806301ad324a49da290dc236d384b44 (patch) | |
tree | 8d62c0988cd1e66acb82390635204c4c66450f8e /components/script_layout_interface/message.rs | |
parent | c420a870c1b1bca7e740e8bb737ef2bcdb1a139d (diff) | |
download | servo-28d7c2dca806301ad324a49da290dc236d384b44.tar.gz servo-28d7c2dca806301ad324a49da290dc236d384b44.zip |
layout: Take into account the client point for fixed positioned stacking contexts.
Diffstat (limited to 'components/script_layout_interface/message.rs')
-rw-r--r-- | components/script_layout_interface/message.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script_layout_interface/message.rs b/components/script_layout_interface/message.rs index 14580be4881..5d16aeffb0a 100644 --- a/components/script_layout_interface/message.rs +++ b/components/script_layout_interface/message.rs @@ -98,7 +98,7 @@ pub enum ReflowQueryType { ContentBoxQuery(TrustedNodeAddress), ContentBoxesQuery(TrustedNodeAddress), NodeOverflowQuery(TrustedNodeAddress), - HitTestQuery(Point2D<f32>, bool), + HitTestQuery(Point2D<f32>, Point2D<f32>, bool), NodeGeometryQuery(TrustedNodeAddress), NodeLayerIdQuery(TrustedNodeAddress), NodeScrollGeometryQuery(TrustedNodeAddress), |