mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 22:12:44 +00:00 
			
		
		
		
	 4270ede7c4
			
		
	
	
		4270ede7c4
		
	
	
	
	
		
			
			We no longer access Bindings::FooWrapper anywhere for a Foo platform object, so these can be removed :^)
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			680 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			680 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/FlyString.h>
 | |
| #include <LibWeb/DOM/CharacterData.h>
 | |
| 
 | |
| namespace Web::DOM {
 | |
| 
 | |
| class Comment final : public CharacterData {
 | |
|     WEB_PLATFORM_OBJECT(Comment, CharacterData);
 | |
| 
 | |
| public:
 | |
|     static JS::NonnullGCPtr<Comment> create_with_global_object(HTML::Window&, String const& data);
 | |
|     virtual ~Comment() override = default;
 | |
| 
 | |
|     virtual FlyString node_name() const override { return "#comment"; }
 | |
| 
 | |
| private:
 | |
|     explicit Comment(Document&, String const&);
 | |
| };
 | |
| 
 | |
| template<>
 | |
| inline bool Node::fast_is<Comment>() const { return is_comment(); }
 | |
| 
 | |
| }
 |