ladybird/Userland/Libraries/LibWeb/DOM/ElementFactory.h

16 lines
295 B
C
Raw Normal View History

/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibWeb/DOM/Element.h>
namespace Web::DOM {
2020-10-09 22:48:05 -03:00
NonnullRefPtr<Element> create_element(Document&, const FlyString& tag_name, const FlyString& namespace_);
}