LibWeb: Implement formData() for "multipart/form-data"

This commit is contained in:
Feng Yu 2024-12-24 19:11:33 -08:00 committed by Tim Ledbetter
commit 8b097b38dd
Notes: github-actions[bot] 2025-01-20 23:34:52 +00:00
27 changed files with 1356 additions and 4 deletions

View file

@ -37,6 +37,11 @@ constexpr bool is_http_tab_or_space(u32 const code_point)
return code_point == 0x09 || code_point == 0x20;
}
constexpr bool is_http_newline(u32 const code_point)
{
return code_point == 0x0A || code_point == 0x0D;
}
enum class HttpQuotedStringExtractValue {
No,
Yes,