2020-08-01 03:04:26 +01:00
|
|
|
/*
|
2021-04-28 22:46:44 +02:00
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
2020-08-01 03:04:26 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-08-01 03:04:26 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2024-11-03 21:02:07 -05:00
|
|
|
#include <LibWeb/HTML/NavigableContainer.h>
|
2020-08-01 03:04:26 +01:00
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
|
|
|
// NOTE: This element is marked as obsolete, but is still listed as required by the specification.
|
2024-11-03 21:02:07 -05:00
|
|
|
class HTMLFrameElement final : public NavigableContainer {
|
|
|
|
WEB_PLATFORM_OBJECT(HTMLFrameElement, NavigableContainer);
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_DECLARE_ALLOCATOR(HTMLFrameElement);
|
2022-08-28 13:42:07 +02:00
|
|
|
|
2020-08-01 03:04:26 +01:00
|
|
|
public:
|
2022-08-28 13:42:07 +02:00
|
|
|
virtual ~HTMLFrameElement() override;
|
2020-08-01 03:04:26 +01:00
|
|
|
|
2022-08-28 13:42:07 +02:00
|
|
|
private:
|
2022-02-18 21:00:52 +01:00
|
|
|
HTMLFrameElement(DOM::Document&, DOM::QualifiedName);
|
2023-01-10 06:28:20 -05:00
|
|
|
|
2023-08-07 08:41:28 +02:00
|
|
|
virtual void initialize(JS::Realm&) override;
|
2023-01-10 06:28:20 -05:00
|
|
|
|
2022-11-05 03:58:14 +00:00
|
|
|
// ^DOM::Element
|
2024-11-03 21:02:07 -05:00
|
|
|
virtual void inserted() override;
|
|
|
|
virtual void removed_from(Node*) override;
|
2024-11-14 08:14:16 -05:00
|
|
|
virtual void attribute_changed(FlyString const& name, Optional<String> const& old_value, Optional<String> const& value, Optional<FlyString> const& namespace_) override;
|
2022-11-05 03:58:14 +00:00
|
|
|
virtual i32 default_tab_index_value() const override;
|
2024-11-08 20:14:37 +08:00
|
|
|
virtual void adjust_computed_style(CSS::StyleProperties&) override;
|
2024-11-03 21:02:07 -05:00
|
|
|
|
|
|
|
void process_the_frame_attributes(bool initial_insertion = false);
|
2020-08-01 03:04:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|