mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 21:22:46 +00:00 
			
		
		
		
	 72c9f56c66
			
		
	
	
		72c9f56c66
		
	
	
	
	
		
			
			Stop worrying about tiny OOMs. Work towards #20449. While going through these, I also changed the function signature in many places where returning ThrowCompletionOr<T> is no longer necessary.
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, the SerenityOS developers.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibWeb/DOM/Event.h>
 | |
| #include <LibWeb/HTML/HTMLElement.h>
 | |
| 
 | |
| namespace Web::HTML {
 | |
| 
 | |
| struct SubmitEventInit : public DOM::EventInit {
 | |
|     JS::GCPtr<HTMLElement> submitter;
 | |
| };
 | |
| 
 | |
| class SubmitEvent final : public DOM::Event {
 | |
|     WEB_PLATFORM_OBJECT(SubmitEvent, DOM::Event);
 | |
| 
 | |
| public:
 | |
|     [[nodiscard]] static JS::NonnullGCPtr<SubmitEvent> create(JS::Realm&, FlyString const& event_name, SubmitEventInit const& event_init);
 | |
|     static WebIDL::ExceptionOr<JS::NonnullGCPtr<SubmitEvent>> construct_impl(JS::Realm&, FlyString const& event_name, SubmitEventInit const& event_init);
 | |
| 
 | |
|     virtual ~SubmitEvent() override;
 | |
| 
 | |
|     JS::GCPtr<HTMLElement> submitter() const { return m_submitter; }
 | |
| 
 | |
| private:
 | |
|     SubmitEvent(JS::Realm&, FlyString const& event_name, SubmitEventInit const& event_init);
 | |
| 
 | |
|     virtual void initialize(JS::Realm&) override;
 | |
|     virtual void visit_edges(Cell::Visitor&) override;
 | |
| 
 | |
|     JS::GCPtr<HTMLElement> m_submitter;
 | |
| };
 | |
| 
 | |
| }
 |