diff options
Diffstat (limited to 'components/script/script_task.rs')
-rw-r--r-- | components/script/script_task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/script_task.rs b/components/script/script_task.rs index 918d776c59f..3e482435888 100644 --- a/components/script/script_task.rs +++ b/components/script/script_task.rs @@ -1139,7 +1139,7 @@ impl ScriptTask { match maybe_node { Some(el) => { let node = NodeCast::from_ref(el); - debug!("clicked on {:s}", node.debug_str()); + debug!("clicked on {}", node.debug_str()); // Prevent click event if form control element is disabled. if node.click_event_filter_by_disabled_state() { return; } match *page.frame() { |