Lines Matching refs:label
5 ['UTF-7', 'utf-7'].forEach(label => {
6 decode_test(label, '+AD4', 'U+002B/U+0041/U+0044/U+0034',
7 `${label} should not be supported`);
11 ['UTF-32', 'utf-32', 'UTF-32LE', 'utf-32le'].forEach(label => {
12 decode_test(label,
15 `${label} with BOM should decode as UTF-16LE`);
17 decode_test(label,
20 `${label} with no BOM should decode as UTF-8`);;
22 ['UTF-32be', 'utf-32be'].forEach(label => {
23 decode_test(label,
26 `${label} with no BOM should decode as UTF-8`);
28 decode_test(label,
31 `${label} with BOM should decode as UTF-8`);