mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 03:42:44 +00:00 
			
		
		
		
	 17a26853e1
			
		
	
	
		17a26853e1
		
	
	
	
	
		
			
			All Scripts have an associated settings object. https://html.spec.whatwg.org/multipage/webappapis.html#settings-object
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			440 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			440 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <LibWeb/HTML/Scripting/Script.h>
 | |
| 
 | |
| namespace Web::HTML {
 | |
| 
 | |
| Script::Script(AK::URL base_url, String filename, EnvironmentSettingsObject& environment_settings_object)
 | |
|     : m_base_url(move(base_url))
 | |
|     , m_filename(move(filename))
 | |
|     , m_settings_object(environment_settings_object)
 | |
| {
 | |
| }
 | |
| 
 | |
| Script::~Script() = default;
 | |
| 
 | |
| }
 |