2020-06-13 17:24:49 -03:00
|
|
|
/*
|
2024-10-04 08:19:50 -03:00
|
|
|
* Copyright (c) 2020, Andreas Kling <andreas@ladybird.org>
|
2020-06-13 17:24:49 -03:00
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-13 17:24:49 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <LibCore/Forward.h>
|
|
|
|
|
#include <LibGfx/Forward.h>
|
2022-12-12 08:20:02 -03:00
|
|
|
#include <LibWeb/HTML/NavigableContainer.h>
|
2023-05-12 02:17:01 -03:00
|
|
|
#include <LibWeb/Layout/ImageProvider.h>
|
2020-06-13 17:24:49 -03:00
|
|
|
|
2020-07-28 13:20:36 -03:00
|
|
|
namespace Web::HTML {
|
2020-06-13 17:24:49 -03:00
|
|
|
|
2022-03-23 09:24:11 -03:00
|
|
|
class HTMLObjectElement final
|
2022-12-12 08:20:02 -03:00
|
|
|
: public NavigableContainer
|
2023-05-12 02:17:01 -03:00
|
|
|
, public Layout::ImageProvider {
|
2022-12-12 08:20:02 -03:00
|
|
|
WEB_PLATFORM_OBJECT(HTMLObjectElement, NavigableContainer)
|
2024-11-14 12:01:23 -03:00
|
|
|
GC_DECLARE_ALLOCATOR(HTMLObjectElement);
|
2022-03-23 21:15:56 -03:00
|
|
|
|
|
|
|
|
enum class Representation {
|
|
|
|
|
Unknown,
|
|
|
|
|
Image,
|
2024-12-07 10:49:29 -03:00
|
|
|
ContentNavigable,
|
2022-03-23 21:15:56 -03:00
|
|
|
Children,
|
|
|
|
|
};
|
2022-03-23 19:55:54 -03:00
|
|
|
|
2020-06-13 17:24:49 -03:00
|
|
|
public:
|
|
|
|
|
virtual ~HTMLObjectElement() override;
|
|
|
|
|
|
2025-07-21 19:58:28 -03:00
|
|
|
virtual void form_associated_element_attribute_changed(FlyString const& name, Optional<String> const& old_value, Optional<String> const& value, Optional<FlyString> const& namespace_) override;
|
2024-04-17 08:56:55 -03:00
|
|
|
virtual void form_associated_element_was_removed(DOM::Node*) override;
|
2020-06-13 17:24:49 -03:00
|
|
|
|
2023-09-03 00:39:01 -03:00
|
|
|
String data() const;
|
2025-10-31 09:30:47 -03:00
|
|
|
void set_data(String const& data);
|
2022-03-23 09:24:11 -03:00
|
|
|
|
2024-01-16 15:04:45 -03:00
|
|
|
String type() const { return get_attribute_value(HTML::AttributeNames::type); }
|
2020-06-13 17:24:49 -03:00
|
|
|
|
2026-02-15 00:14:09 -03:00
|
|
|
// ^FormAssociatedElement
|
|
|
|
|
virtual bool is_form_associated_element() const override { return true; }
|
|
|
|
|
|
2022-03-01 18:03:30 -03:00
|
|
|
// ^FormAssociatedElement
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/forms.html#category-listed
|
|
|
|
|
virtual bool is_listed() const override { return true; }
|
|
|
|
|
|
2023-08-18 09:11:55 -03:00
|
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
|
|
2020-06-13 17:24:49 -03:00
|
|
|
private:
|
2022-08-28 08:42:07 -03:00
|
|
|
HTMLObjectElement(DOM::Document&, DOM::QualifiedName);
|
|
|
|
|
|
2023-12-24 10:41:33 -03:00
|
|
|
virtual bool is_html_object_element() const override { return true; }
|
|
|
|
|
|
2023-08-07 03:41:28 -03:00
|
|
|
virtual void initialize(JS::Realm&) override;
|
2023-01-10 08:28:20 -03:00
|
|
|
|
2024-12-23 13:51:10 -03:00
|
|
|
virtual bool is_presentational_hint(FlyString const&) const override;
|
2026-04-30 06:44:26 -03:00
|
|
|
virtual void apply_presentational_hints(Vector<CSS::StyleProperty>&) const override;
|
2024-10-01 13:26:01 -03:00
|
|
|
|
2024-12-20 12:35:12 -03:00
|
|
|
virtual GC::Ptr<Layout::Node> create_layout_node(GC::Ref<CSS::ComputedProperties>) override;
|
2024-12-20 07:32:17 -03:00
|
|
|
virtual void adjust_computed_style(CSS::ComputedProperties&) override;
|
2020-06-13 17:24:49 -03:00
|
|
|
|
2022-03-24 12:14:19 -03:00
|
|
|
bool has_ancestor_media_element_or_object_element_not_showing_fallback_content() const;
|
|
|
|
|
|
2022-03-23 09:24:11 -03:00
|
|
|
void queue_element_task_to_run_object_representation_steps();
|
2024-12-07 10:49:29 -03:00
|
|
|
void run_object_representation_handler_steps(Fetch::Infrastructure::Response const&, MimeSniff::MimeType const&, ReadonlyBytes);
|
2022-03-24 12:09:45 -03:00
|
|
|
void run_object_representation_completed_steps(Representation);
|
2022-03-23 09:24:11 -03:00
|
|
|
void run_object_representation_fallback_steps();
|
|
|
|
|
|
2023-06-11 11:02:37 -03:00
|
|
|
void load_image();
|
2022-03-24 12:09:45 -03:00
|
|
|
void update_layout_and_child_objects(Representation);
|
2022-03-23 09:24:11 -03:00
|
|
|
|
2024-12-07 10:49:29 -03:00
|
|
|
void resource_did_load(Fetch::Infrastructure::Response const&, ReadonlyBytes);
|
|
|
|
|
void resource_did_fail();
|
2022-03-23 09:24:11 -03:00
|
|
|
|
2022-11-05 00:58:14 -03:00
|
|
|
// ^DOM::Element
|
|
|
|
|
virtual i32 default_tab_index_value() const override;
|
|
|
|
|
|
2023-05-12 02:17:01 -03:00
|
|
|
// ^Layout::ImageProvider
|
2024-02-18 22:10:37 -03:00
|
|
|
virtual bool is_image_available() const override;
|
2023-05-20 11:27:31 -03:00
|
|
|
virtual Optional<CSSPixels> intrinsic_width() const override;
|
|
|
|
|
virtual Optional<CSSPixels> intrinsic_height() const override;
|
2023-09-03 19:33:58 -03:00
|
|
|
virtual Optional<CSSPixelFraction> intrinsic_aspect_ratio() const override;
|
2026-05-07 09:39:50 -03:00
|
|
|
virtual Optional<Gfx::DecodedImageFrame> current_image_frame_sized(Gfx::IntSize) const override;
|
2023-05-12 02:17:01 -03:00
|
|
|
virtual void set_visible_in_viewport(bool) override;
|
2025-07-26 09:46:23 -03:00
|
|
|
virtual GC::Ptr<DOM::Element const> to_html_element() const override { return *this; }
|
2025-11-04 16:51:46 -03:00
|
|
|
virtual size_t current_frame_index() const override { return 0; }
|
|
|
|
|
virtual GC::Ptr<DecodedImageData> decoded_image_data() const override { return image_data(); }
|
2023-05-12 02:17:01 -03:00
|
|
|
|
2024-11-14 12:01:23 -03:00
|
|
|
GC::Ptr<DecodedImageData> image_data() const;
|
2023-06-11 11:02:37 -03:00
|
|
|
|
2024-12-07 10:49:29 -03:00
|
|
|
Representation m_representation { Representation::Unknown };
|
|
|
|
|
|
2024-11-14 12:01:23 -03:00
|
|
|
GC::Ptr<SharedResourceRequest> m_resource_request;
|
2024-11-26 11:29:07 -03:00
|
|
|
|
2024-12-11 15:18:21 -03:00
|
|
|
GC::Ptr<DOM::DocumentObserver> m_document_observer;
|
|
|
|
|
|
2025-05-22 13:16:11 -03:00
|
|
|
Vector<DOM::DocumentLoadEventDelayer> m_document_load_event_delayer_for_object_representation_task;
|
|
|
|
|
Vector<DOM::DocumentLoadEventDelayer> m_document_load_event_delayer_for_resource_load;
|
2020-06-13 17:24:49 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
2023-12-24 10:41:33 -03:00
|
|
|
|
|
|
|
|
namespace Web::DOM {
|
2025-05-13 08:06:33 -03:00
|
|
|
|
2023-12-24 10:41:33 -03:00
|
|
|
template<>
|
|
|
|
|
inline bool Node::fast_is<HTML::HTMLObjectElement>() const { return is_html_object_element(); }
|
2025-05-13 08:06:33 -03:00
|
|
|
|
2023-12-24 10:41:33 -03:00
|
|
|
}
|