mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 03:32:45 +00:00 
			
		
		
		
	 1ceba560f4
			
		
	
	
		1ceba560f4
		
	
	
	
	
		
			
			Not used for anything currently other than exposing it on the Window object. This allows Web Components Polyfills to patch its prototype.
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			335 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			335 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2022, Luke Wilde <lukew@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <LibWeb/DOM/CDATASection.h>
 | |
| 
 | |
| namespace Web::DOM {
 | |
| 
 | |
| CDATASection::CDATASection(Document& document, String const& data)
 | |
|     : Text(document, NodeType::CDATA_SECTION_NODE, data)
 | |
| {
 | |
| }
 | |
| 
 | |
| CDATASection::~CDATASection()
 | |
| {
 | |
| }
 | |
| 
 | |
| }
 |