mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 03:42:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			673 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			673 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | ||
|  * Copyright (c) 2021, Luke Wilde <lukew@serenityos.org>
 | ||
|  *
 | ||
|  * SPDX-License-Identifier: BSD-2-Clause
 | ||
|  */
 | ||
| 
 | ||
| #include <LibWeb/DOM/AbortController.h>
 | ||
| #include <LibWeb/DOM/AbortSignal.h>
 | ||
| 
 | ||
| namespace Web::DOM {
 | ||
| 
 | ||
| // https://dom.spec.whatwg.org/#dom-abortcontroller-abortcontroller
 | ||
| AbortController::AbortController(Document& document)
 | ||
|     : m_signal(AbortSignal::create(document))
 | ||
| {
 | ||
| }
 | ||
| 
 | ||
| AbortController::~AbortController()
 | ||
| {
 | ||
| }
 | ||
| 
 | ||
| // https://dom.spec.whatwg.org/#dom-abortcontroller-abort
 | ||
| void AbortController::abort(JS::Value reason)
 | ||
| {
 | ||
|     // The abort(reason) method steps are to signal abort on this’s signal with reason if it is given.
 | ||
|     m_signal->signal_abort(reason);
 | ||
| }
 | ||
| 
 | ||
| }
 | 
