mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
		
			
				
	
	
		
			39 lines
		
	
	
	
		
			819 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			819 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <AK/Function.h>
 | 
						|
#include <LibWeb/CSS/CSSStyleSheet.h>
 | 
						|
#include <LibWeb/Loader/Resource.h>
 | 
						|
 | 
						|
namespace Web {
 | 
						|
 | 
						|
class CSSLoader : public ResourceClient {
 | 
						|
public:
 | 
						|
    explicit CSSLoader(DOM::Element& owner_element);
 | 
						|
 | 
						|
    void load_from_text(const String&);
 | 
						|
    void load_from_url(const URL&);
 | 
						|
 | 
						|
    void load_next_import_if_needed();
 | 
						|
 | 
						|
    RefPtr<CSS::CSSStyleSheet> style_sheet() const { return m_style_sheet; };
 | 
						|
 | 
						|
    Function<void()> on_load;
 | 
						|
    Function<void()> on_fail;
 | 
						|
 | 
						|
private:
 | 
						|
    // ^ResourceClient
 | 
						|
    virtual void resource_did_load() override;
 | 
						|
    virtual void resource_did_fail() override;
 | 
						|
 | 
						|
    DOM::Element& m_owner_element;
 | 
						|
 | 
						|
    RefPtr<CSS::CSSStyleSheet> m_style_sheet;
 | 
						|
};
 | 
						|
 | 
						|
}
 |