mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
e1099a1757
This commit replaces the 5 fuzzers that previously tested LibTextCodec with a single fuzzer. We now rely on the fuzzer to generate the encoding and separate it from the encoded data with a magic separator. This increases the overall coverage of LibTextCodec and eliminates the possibility of the same error being generated by multiple fuzzers.
15 lines
396 B
Text
15 lines
396 B
Text
magic_separator="|DATA|"
|
|
|
|
# encodings
|
|
cyrillic_encoding="windows-1251"
|
|
hebrew_encoding="windows-1255"
|
|
koi8r_encoding="koi8-r"
|
|
latin1_encoding="windows-1252"
|
|
latin2_encoding="iso-8859-2"
|
|
latin9_encoding="iso-8859-15"
|
|
mac_roman_encoding="macintosh"
|
|
turkish_encoding="windows-1254"
|
|
user_defined_encoding="x-user-defined"
|
|
utf16be_encoding="utf-16be"
|
|
utf16le_encoding="utf-16le"
|
|
utf8_encoding="utf-8"
|