mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:32:44 +00:00 
			
		
		
		
	 8de7e49a56
			
		
	
	
		8de7e49a56
		
	
	
	
	
		
			
			These classes only needed Window to get at its realm. Pass a realm directly to construct DOM and WebIDL classes. This change importantly removes the guarantee that a Document will always have a non-null Window object. Only Documents created by a BrowsingContext will have a non-null Window object. Documents created by for example, DocumentFragment, will not have a Window (soon). This incremental commit leaves some workarounds in place to keep other parts of the code building.
		
			
				
	
	
		
			47 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2022, Luke Wilde <lukew@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibWeb/Bindings/PlatformObject.h>
 | |
| 
 | |
| namespace Web::DOM {
 | |
| 
 | |
| // https://dom.spec.whatwg.org/#mutationrecord
 | |
| class MutationRecord : public Bindings::PlatformObject {
 | |
|     WEB_PLATFORM_OBJECT(MutationRecord, Bindings::PlatformObject);
 | |
| 
 | |
| public:
 | |
|     static JS::NonnullGCPtr<MutationRecord> create(JS::Realm&, FlyString const& type, Node& target, NodeList& added_nodes, NodeList& removed_nodes, Node* previous_sibling, Node* next_sibling, String const& attribute_name, String const& attribute_namespace, String const& old_value);
 | |
| 
 | |
|     virtual ~MutationRecord() override;
 | |
| 
 | |
|     FlyString const& type() const { return m_type; }
 | |
|     Node const* target() const { return m_target; }
 | |
|     NodeList const* added_nodes() const { return m_added_nodes; }
 | |
|     NodeList const* removed_nodes() const { return m_removed_nodes; }
 | |
|     Node const* previous_sibling() const { return m_previous_sibling; }
 | |
|     Node const* next_sibling() const { return m_next_sibling; }
 | |
|     String const& attribute_name() const { return m_attribute_name; }
 | |
|     String const& attribute_namespace() const { return m_attribute_namespace; }
 | |
|     String const& old_value() const { return m_old_value; }
 | |
| 
 | |
| private:
 | |
|     MutationRecord(JS::Realm& realm, FlyString const& type, Node& target, NodeList& added_nodes, NodeList& removed_nodes, Node* previous_sibling, Node* next_sibling, String const& attribute_name, String const& attribute_namespace, String const& old_value);
 | |
|     virtual void visit_edges(Cell::Visitor&) override;
 | |
| 
 | |
|     FlyString m_type;
 | |
|     JS::GCPtr<Node> m_target;
 | |
|     JS::GCPtr<NodeList> m_added_nodes;
 | |
|     JS::GCPtr<NodeList> m_removed_nodes;
 | |
|     JS::GCPtr<Node> m_previous_sibling;
 | |
|     JS::GCPtr<Node> m_next_sibling;
 | |
|     String m_attribute_name;
 | |
|     String m_attribute_namespace;
 | |
|     String m_old_value;
 | |
| };
 | |
| 
 | |
| }
 |