mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	This is a monster patch that turns all EventTargets into GC-allocated PlatformObjects. Their C++ wrapper classes are removed, and the LibJS garbage collector is now responsible for their lifetimes. There's a fair amount of hacks and band-aids in this patch, and we'll have a lot of cleanup to do after this.
		
			
				
	
	
		
			44 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2020, the SerenityOS developers.
 | 
						|
 * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <LibWeb/HTML/HTMLElement.h>
 | 
						|
#include <LibWeb/HTML/HTMLHyperlinkElementUtils.h>
 | 
						|
 | 
						|
namespace Web::HTML {
 | 
						|
 | 
						|
class HTMLAreaElement final
 | 
						|
    : public HTMLElement
 | 
						|
    , public HTMLHyperlinkElementUtils {
 | 
						|
    WEB_PLATFORM_OBJECT(HTMLAreaElement, HTMLElement);
 | 
						|
 | 
						|
public:
 | 
						|
    virtual ~HTMLAreaElement() override;
 | 
						|
 | 
						|
private:
 | 
						|
    HTMLAreaElement(DOM::Document&, DOM::QualifiedName);
 | 
						|
 | 
						|
    // ^DOM::Element
 | 
						|
    virtual void parse_attribute(FlyString const& name, String const& value) override;
 | 
						|
 | 
						|
    // ^HTML::HTMLHyperlinkElementUtils
 | 
						|
    virtual DOM::Document& hyperlink_element_utils_document() override { return document(); }
 | 
						|
    virtual String hyperlink_element_utils_href() const override;
 | 
						|
    virtual void set_hyperlink_element_utils_href(String) override;
 | 
						|
    virtual bool hyperlink_element_utils_is_html_anchor_element() const override { return false; }
 | 
						|
    virtual bool hyperlink_element_utils_is_connected() const override { return is_connected(); }
 | 
						|
    virtual String hyperlink_element_utils_target() const override { return ""; }
 | 
						|
    virtual void hyperlink_element_utils_queue_an_element_task(HTML::Task::Source source, Function<void()> steps) override
 | 
						|
    {
 | 
						|
        queue_an_element_task(source, move(steps));
 | 
						|
    }
 | 
						|
};
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
WRAPPER_HACK(HTMLAreaElement, Web::HTML)
 |