mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-08 16:12:23 +02:00
This makes the document URL available to all the parse_attributes() callbacks, in case they need it for anything.
8 lines
151 B
C
8 lines
151 B
C
#pragma once
|
|
|
|
#include <AK/NonnullRefPtr.h>
|
|
#include <LibHTML/DOM/Document.h>
|
|
|
|
NonnullRefPtr<Document> parse_html(const String&, const URL& = URL());
|
|
|