aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout_thread/lib.rs
diff options
context:
space:
mode:
authorPyfisch <pyfisch@gmail.com>2018-02-15 11:18:55 +0100
committerPyfisch <pyfisch@gmail.com>2018-02-24 10:56:11 +0100
commit23fcd3a850d15a44498eb834184c92d9a9c6ea24 (patch)
tree276ff70cdd0b4fe8cc29b0eda1b04556a5a1b5d9 /components/layout_thread/lib.rs
parentbc87b41db34ad62083ac295d67e3b009bab5b14f (diff)
downloadservo-23fcd3a850d15a44498eb834184c92d9a9c6ea24.tar.gz
servo-23fcd3a850d15a44498eb834184c92d9a9c6ea24.zip
Rebase and fix innerText
Diffstat (limited to 'components/layout_thread/lib.rs')
-rw-r--r--components/layout_thread/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout_thread/lib.rs b/components/layout_thread/lib.rs
index 85d056d3d4a..4e55daaab6a 100644
--- a/components/layout_thread/lib.rs
+++ b/components/layout_thread/lib.rs
@@ -1427,7 +1427,7 @@ impl LayoutThread {
ReflowGoal::ElementInnerTextQuery(node) => {
let node = unsafe { ServoLayoutNode::new(&node) };
rw_data.element_inner_text_response =
- process_element_inner_text_query(node, &rw_data.display_list);
+ process_element_inner_text_query(node, &rw_data.indexable_text);
},
ReflowGoal::Full | ReflowGoal::TickAnimations => {}
}