mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-26 06:18:59 +00:00
Note that as of this commit, there aren't any such throwers, and the call site in Heap::allocate will drop exceptions on the floor. This commit only serves to change the declaration of the overrides, make sure they return an empty value, and to propagate OOM errors frm their base initialize invocations.
52 lines
1.6 KiB
C++
52 lines
1.6 KiB
C++
/*
|
|
* Copyright (c) 2021, Luke Wilde <lukew@serenityos.org>
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Bindings/LegacyPlatformObject.h>
|
|
#include <LibWeb/Forward.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
// https://html.spec.whatwg.org/multipage/dom.html#domstringmap
|
|
class DOMStringMap final : public Bindings::LegacyPlatformObject {
|
|
WEB_PLATFORM_OBJECT(DOMStringMap, Bindings::LegacyPlatformObject);
|
|
|
|
public:
|
|
static JS::NonnullGCPtr<DOMStringMap> create(DOM::Element&);
|
|
|
|
virtual ~DOMStringMap() override;
|
|
|
|
DeprecatedString determine_value_of_named_property(DeprecatedString const&) const;
|
|
|
|
WebIDL::ExceptionOr<void> set_value_of_new_named_property(DeprecatedString const&, DeprecatedString const&);
|
|
WebIDL::ExceptionOr<void> set_value_of_existing_named_property(DeprecatedString const&, DeprecatedString const&);
|
|
|
|
bool delete_existing_named_property(DeprecatedString const&);
|
|
|
|
private:
|
|
explicit DOMStringMap(DOM::Element&);
|
|
|
|
virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override;
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
// ^LegacyPlatformObject
|
|
virtual JS::Value named_item_value(DeprecatedFlyString const&) const override;
|
|
virtual Vector<DeprecatedString> supported_property_names() const override;
|
|
|
|
struct NameValuePair {
|
|
DeprecatedString name;
|
|
DeprecatedString value;
|
|
};
|
|
|
|
Vector<NameValuePair> get_name_value_pairs() const;
|
|
|
|
// https://html.spec.whatwg.org/multipage/dom.html#concept-domstringmap-element
|
|
JS::NonnullGCPtr<DOM::Element> m_associated_element;
|
|
};
|
|
|
|
}
|