ladybird/Libraries/LibWeb/DOM/AdoptedStyleSheets.h

18 lines
369 B
C
Raw Normal View History

/*
* Copyright (c) 2024, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
2025-07-19 19:35:33 -07:00
#include <LibWeb/Export.h>
#include <LibWeb/Forward.h>
#include <LibWeb/WebIDL/ObservableArray.h>
namespace Web::DOM {
2025-07-19 19:35:33 -07:00
WEB_API GC::Ref<WebIDL::ObservableArray> create_adopted_style_sheets_list(Node& document_or_shadow_root);
}