mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-10 00:52:28 +02:00
This reverts commit f6439789db.
Oops, I committed unrelated changes here, let me clean that up..
10 lines
255 B
C++
10 lines
255 B
C++
#pragma once
|
|
|
|
#include <AK/NonnullRefPtr.h>
|
|
#include <LibHTML/DOM/Document.h>
|
|
|
|
class DocumentFragment;
|
|
|
|
NonnullRefPtr<Document> parse_html(const StringView&, const URL& = URL());
|
|
RefPtr<DocumentFragment> parse_html_fragment(Document&, const StringView&);
|