mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-30 21:01:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			354 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			354 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2024, the Ladybird developers.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/StringView.h>
 | |
| 
 | |
| namespace Web::CSS {
 | |
| 
 | |
| enum class PreferredMotion {
 | |
|     Auto,
 | |
|     NoPreference,
 | |
|     Reduce,
 | |
| };
 | |
| 
 | |
| PreferredMotion preferred_motion_from_string(StringView);
 | |
| StringView preferred_motion_to_string(PreferredMotion);
 | |
| 
 | |
| }
 | 
