mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
~[] to Vec in script/script_task.rs
This commit is contained in:
parent
e107d0f015
commit
428ea04fb5
1 changed files with 1 additions and 1 deletions
|
@ -1133,7 +1133,7 @@ impl ScriptTask {
|
|||
match page.get_nodes_under_mouse(&point) {
|
||||
Some(node_address) => {
|
||||
|
||||
let mut target_list = vec!();
|
||||
let mut target_list: Vec<JS<Node>> = Vec::new();
|
||||
let mut target_compare = false;
|
||||
|
||||
let mouse_over_targets = &mut *self.mouse_over_targets.borrow_mut();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue