diff options
author | Fernando Jiménez Moreno <ferjmoreno@gmail.com> | 2017-03-02 16:51:42 +0100 |
---|---|---|
committer | Fernando Jiménez Moreno <ferjmoreno@gmail.com> | 2017-03-02 16:59:04 +0100 |
commit | 31d833f32c9bb24b0df12d220ed0f6627ad56a92 (patch) | |
tree | c1a9f16b776defe011aaba668f9438d30b628e79 /components/script_layout_interface/rpc.rs | |
parent | 7426d902a30e955c479841aee19e021d8cb7b4e4 (diff) | |
download | servo-31d833f32c9bb24b0df12d220ed0f6627ad56a92.tar.gz servo-31d833f32c9bb24b0df12d220ed0f6627ad56a92.zip |
s/nodes_from_point/nodes_from_point_response and change test from reftest to regular test checking only the fixed crash
Diffstat (limited to 'components/script_layout_interface/rpc.rs')
-rw-r--r-- | components/script_layout_interface/rpc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script_layout_interface/rpc.rs b/components/script_layout_interface/rpc.rs index 7446c6f11c0..b07fa25a8c1 100644 --- a/components/script_layout_interface/rpc.rs +++ b/components/script_layout_interface/rpc.rs @@ -41,7 +41,7 @@ pub trait LayoutRPC { /// Requests the list of not-yet-loaded images that were encountered in the last reflow. fn pending_images(&self) -> Vec<PendingImage>; /// Requests the list of nodes from the given point. - fn nodes_from_point(&self) -> Vec<UntrustedNodeAddress>; + fn nodes_from_point_response(&self) -> Vec<UntrustedNodeAddress>; fn text_index(&self) -> TextIndexResponse; } |