11cb0ef41Sopenharmony_ci// META: title=FormData: FormData: Upload files in UTF-8 fetch() 21cb0ef41Sopenharmony_ci// META: script=../support/send-file-formdata-helper.js 31cb0ef41Sopenharmony_ci "use strict"; 41cb0ef41Sopenharmony_ci 51cb0ef41Sopenharmony_ci formDataPostFileUploadTest({ 61cb0ef41Sopenharmony_ci fileNameSource: "ASCII", 71cb0ef41Sopenharmony_ci fileBaseName: "file-for-upload-in-form.txt", 81cb0ef41Sopenharmony_ci }); 91cb0ef41Sopenharmony_ci 101cb0ef41Sopenharmony_ci formDataPostFileUploadTest({ 111cb0ef41Sopenharmony_ci fileNameSource: "x-user-defined", 121cb0ef41Sopenharmony_ci fileBaseName: "file-for-upload-in-form-\uF7F0\uF793\uF783\uF7A0.txt", 131cb0ef41Sopenharmony_ci }); 141cb0ef41Sopenharmony_ci 151cb0ef41Sopenharmony_ci formDataPostFileUploadTest({ 161cb0ef41Sopenharmony_ci fileNameSource: "windows-1252", 171cb0ef41Sopenharmony_ci fileBaseName: "file-for-upload-in-form-☺😂.txt", 181cb0ef41Sopenharmony_ci }); 191cb0ef41Sopenharmony_ci 201cb0ef41Sopenharmony_ci formDataPostFileUploadTest({ 211cb0ef41Sopenharmony_ci fileNameSource: "JIS X 0201 and JIS X 0208", 221cb0ef41Sopenharmony_ci fileBaseName: "file-for-upload-in-form-★星★.txt", 231cb0ef41Sopenharmony_ci }); 241cb0ef41Sopenharmony_ci 251cb0ef41Sopenharmony_ci formDataPostFileUploadTest({ 261cb0ef41Sopenharmony_ci fileNameSource: "Unicode", 271cb0ef41Sopenharmony_ci fileBaseName: "file-for-upload-in-form-☺.txt", 281cb0ef41Sopenharmony_ci }); 291cb0ef41Sopenharmony_ci 301cb0ef41Sopenharmony_ci formDataPostFileUploadTest({ 311cb0ef41Sopenharmony_ci fileNameSource: "Unicode", 321cb0ef41Sopenharmony_ci fileBaseName: `file-for-upload-in-form-${kTestChars}.txt`, 331cb0ef41Sopenharmony_ci }); 34