| Index: third_party/WebKit/Source/core/dom/Document.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
|
| index 6717d6cf5333d621c08b1a7a090429bd96e676b3..9947d74f5ca54af444bcc6f3ec1dfcccb96b0256 100644
|
| --- a/third_party/WebKit/Source/core/dom/Document.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Document.cpp
|
| @@ -642,6 +642,7 @@ Document::Document(const DocumentInit& initializer,
|
| &Document::ElementDataCacheClearTimerFired),
|
| timeline_(DocumentTimeline::Create(this)),
|
| pending_animations_(new PendingAnimations(*this)),
|
| + worklet_animation_controller_(new WorkletAnimationController),
|
| template_document_host_(nullptr),
|
| did_associate_form_controls_timer_(
|
| TaskRunnerHelper::Get(TaskType::kUnspecedLoading, this),
|
| @@ -7008,6 +7009,7 @@ DEFINE_TRACE(Document) {
|
| visitor->Trace(svg_extensions_);
|
| visitor->Trace(timeline_);
|
| visitor->Trace(pending_animations_);
|
| + visitor->Trace(worklet_animation_controller_);
|
| visitor->Trace(context_document_);
|
| visitor->Trace(canvas_font_cache_);
|
| visitor->Trace(intersection_observer_controller_);
|
|
|