LibWeb: Delay load event in more HTMLObjectElement situation

This commit is contained in:
Andreas Kling 2024-11-26 15:29:07 +01:00 committed by Andreas Kling
parent e88286b337
commit 2405805ddf
Notes: github-actions[bot] 2024-11-26 17:59:01 +00:00
2 changed files with 10 additions and 1 deletions

View file

@ -92,6 +92,10 @@ private:
GC::Ptr<DecodedImageData> image_data() const;
GC::Ptr<SharedResourceRequest> m_resource_request;
public:
Optional<DOM::DocumentLoadEventDelayer> m_document_load_event_delayer_for_object_representation_task;
Optional<DOM::DocumentLoadEventDelayer> m_document_load_event_delayer_for_resource_load;
};
}