mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-08 16:12:23 +02:00
We now have create_element(document, tag_name) in ElementFactory. This will be useful for constructing new elements outside of parsing.
6 lines
122 B
C
6 lines
122 B
C
#pragma once
|
|
|
|
#include <LibHTML/DOM/Element.h>
|
|
|
|
NonnullRefPtr<Element> create_element(Document&, const String& tag_name);
|