summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
Diffstat (limited to 'Userland')
-rw-r--r--Userland/ht.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/ht.cpp b/Userland/ht.cpp
index 27667530cb..b3354c2a7f 100644
--- a/Userland/ht.cpp
+++ b/Userland/ht.cpp
@@ -48,7 +48,7 @@ int main(int argc, char** argv)
auto contents = file_or_error.value()->read_all();
Web::HTMLDocumentParser parser(contents);
- parser.run();
+ parser.run(URL::create_with_file_protocol(input_path));
auto& document = parser.document();
Web::dump_tree(document);