mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 02:03:06 -05:00
6e19ab2bbc
We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
51 lines
1.5 KiB
C++
51 lines
1.5 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 void visit_edges(Cell::Visitor&) override;
|
|
|
|
// ^LegacyPlatformObject
|
|
virtual JS::Value named_item_value(FlyString 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;
|
|
};
|
|
|
|
}
|