mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:32:44 +00:00 
			
		
		
		
	 1f863de9aa
			
		
	
	
		1f863de9aa
		
	
	
	
	
		
			
			Required by old versions of Pixi.js's XMLFormat bitmap font loader.
db824181dc/packages/text-bitmap/src/formats/XMLFormat.ts (L16)
		
	
			
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			560 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			560 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2023, Luke Wilde <lukew@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <LibWeb/Bindings/XMLDocumentPrototype.h>
 | |
| #include <LibWeb/DOM/XMLDocument.h>
 | |
| 
 | |
| namespace Web::DOM {
 | |
| 
 | |
| XMLDocument::XMLDocument(JS::Realm& realm, AK::URL const& url)
 | |
|     : Document(realm, url)
 | |
| {
 | |
| }
 | |
| 
 | |
| JS::ThrowCompletionOr<void> XMLDocument::initialize(JS::Realm& realm)
 | |
| {
 | |
|     MUST_OR_THROW_OOM(Base::initialize(realm));
 | |
|     set_prototype(&Bindings::ensure_web_prototype<Bindings::XMLDocumentPrototype>(realm, "XMLDocument"));
 | |
| 
 | |
|     return {};
 | |
| }
 | |
| 
 | |
| }
 |