1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 15:08:12 +00:00

LibWeb: Implement falling back early to an object's child representation

This commit is contained in:
Timothy Flynn 2022-03-24 11:14:19 -04:00 committed by Andreas Kling
parent a002c8156b
commit 23915d0977
2 changed files with 26 additions and 1 deletions

View file

@ -48,6 +48,8 @@ public:
private:
virtual RefPtr<Layout::Node> create_layout_node(NonnullRefPtr<CSS::StyleProperties>) override;
bool has_ancestor_media_element_or_object_element_not_showing_fallback_content() const;
void queue_element_task_to_run_object_representation_steps();
void run_object_representation_handler_steps(Optional<String> resource_type);
void run_object_representation_completed_steps(Representation);