mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 16:12:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			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 WebIDL::ExceptionOr<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;
 | |
| };
 | |
| 
 | |
| }
 | 
