netsurf: add TODO on encoding change error code

This commit is contained in:
Pierre Tachoire
2024-01-12 15:26:29 +01:00
parent 0f24660707
commit 2981703b7f
2 changed files with 8 additions and 1 deletions

View File

@@ -119,6 +119,6 @@ test "bug document html parsing #4" {
const file = try std.fs.cwd().openFile("tests/html/bug-html-parsing-4.html", .{});
defer file.close();
doc = try parser.documentHTMLParse(file.reader(), null);
doc = try parser.documentHTMLParse(file.reader(), "UTF-8");
parser.documentHTMLClose(doc) catch {};
}