mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 05:10:57 +00:00 
			
		
		
		
	
		
			
	
	
		
			20 lines
		
	
	
	
		
			481 B
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			20 lines
		
	
	
	
		
			481 B
		
	
	
	
		
			C
		
	
	
	
	
	
|   | /*
 | ||
|  |  * Copyright (c) 2024, Sam Atkins <sam@ladybird.org> | ||
|  |  * | ||
|  |  * SPDX-License-Identifier: BSD-2-Clause | ||
|  |  */ | ||
|  | 
 | ||
|  | #pragma once
 | ||
|  | 
 | ||
|  | #include <AK/Optional.h>
 | ||
|  | #include <AK/String.h>
 | ||
|  | #include <LibWeb/CSS/Selector.h>
 | ||
|  | #include <LibWeb/WebIDL/ExceptionOr.h>
 | ||
|  | 
 | ||
|  | namespace Web::Animations { | ||
|  | 
 | ||
|  | // https://drafts.csswg.org/web-animations-1/#dom-keyframeeffect-pseudo-element-parsing
 | ||
|  | WebIDL::ExceptionOr<Optional<CSS::Selector::PseudoElement>> pseudo_element_parsing(JS::Realm&, Optional<String> const&); | ||
|  | 
 | ||
|  | } |