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