aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/task_source/timer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/task_source/timer.rs')
-rw-r--r--components/script/task_source/timer.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/components/script/task_source/timer.rs b/components/script/task_source/timer.rs
index cd134fb12a2..9c4d03bdda5 100644
--- a/components/script/task_source/timer.rs
+++ b/components/script/task_source/timer.rs
@@ -10,7 +10,10 @@ use std::fmt;
#[derive(JSTraceable)]
/// https://html.spec.whatwg.org/multipage/#timer-task-source
-pub struct TimerTaskSource(pub Box<dyn ScriptChan + Send + 'static>, pub PipelineId);
+pub struct TimerTaskSource(
+ pub Box<dyn ScriptChan + Send + 'static>,
+ #[no_trace] pub PipelineId,
+);
impl Clone for TimerTaskSource {
fn clone(&self) -> TimerTaskSource {