mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 01:32:45 +00:00 
			
		
		
		
	 1defc4595b
			
		
	
	
		1defc4595b
		
	
	
	
	
		
			
			This allows us to improve the const-correctness in RadioNodeList, which
has been made possible as of: 5f0ccfb499 now that a GC-visit accepts a
const GC pointer.
		
	
			
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			868 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			868 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2023, Shannon Booth <shannon@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibWeb/DOM/LiveNodeList.h>
 | |
| 
 | |
| namespace Web::DOM {
 | |
| 
 | |
| // https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#radionodelist
 | |
| class RadioNodeList : public LiveNodeList {
 | |
|     WEB_PLATFORM_OBJECT(RadioNodeList, LiveNodeList);
 | |
|     JS_DECLARE_ALLOCATOR(RadioNodeList);
 | |
| 
 | |
| public:
 | |
|     [[nodiscard]] static JS::NonnullGCPtr<RadioNodeList> create(JS::Realm& realm, Node const& root, Scope scope, Function<bool(Node const&)> filter);
 | |
| 
 | |
|     virtual ~RadioNodeList() override;
 | |
| 
 | |
|     FlyString value() const;
 | |
|     void set_value(FlyString const&);
 | |
| 
 | |
| protected:
 | |
|     virtual void initialize(JS::Realm&) override;
 | |
| 
 | |
| private:
 | |
|     explicit RadioNodeList(JS::Realm& realm, Node const& root, Scope scope, Function<bool(Node const&)> filter);
 | |
| };
 | |
| 
 | |
| }
 |