mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-11 21:52:53 +00:00
9 lines
264 B
C++
9 lines
264 B
C++
#pragma once
|
|
|
|
#include <AK/NonnullRefPtr.h>
|
|
#include <LibHTML/DOM/Document.h>
|
|
|
|
class DocumentFragment;
|
|
|
|
NonnullRefPtr<Document> parse_html_document(const StringView&, const URL& = URL());
|
|
RefPtr<DocumentFragment> parse_html_fragment(Document&, const StringView&);
|