mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 11:20:03 +00:00
10 lines
257 B
C++
10 lines
257 B
C++
#pragma once
|
|
|
|
#include <AK/NonnullRefPtr.h>
|
|
#include <LibHTML/DOM/Document.h>
|
|
|
|
class DocumentFragment;
|
|
|
|
RefPtr<Document> parse_html_document(const StringView&, const URL& = URL());
|
|
RefPtr<DocumentFragment> parse_html_fragment(Document&, const StringView&);
|