11cb0ef41Sopenharmony_ci<!DOCTYPE html> 21cb0ef41Sopenharmony_ci<meta charset="utf-8" /> 31cb0ef41Sopenharmony_ci<title>FormData: Upload files in UTF-8 fetch()</title> 41cb0ef41Sopenharmony_ci<link 51cb0ef41Sopenharmony_ci rel="help" 61cb0ef41Sopenharmony_ci href="https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart-form-data" 71cb0ef41Sopenharmony_ci/> 81cb0ef41Sopenharmony_ci<link 91cb0ef41Sopenharmony_ci rel="help" 101cb0ef41Sopenharmony_ci href="https://html.spec.whatwg.org/multipage/dnd.html#datatransferitemlist" 111cb0ef41Sopenharmony_ci/> 121cb0ef41Sopenharmony_ci<link rel="help" href="https://w3c.github.io/FileAPI/#file-constructor" /> 131cb0ef41Sopenharmony_ci<link 141cb0ef41Sopenharmony_ci rel="author" 151cb0ef41Sopenharmony_ci title="Benjamin C. Wiley Sittler" 161cb0ef41Sopenharmony_ci href="mailto:bsittler@chromium.org" 171cb0ef41Sopenharmony_ci/> 181cb0ef41Sopenharmony_ci<script src="/resources/testharness.js"></script> 191cb0ef41Sopenharmony_ci<script src="/resources/testharnessreport.js"></script> 201cb0ef41Sopenharmony_ci<script src="../support/send-file-formdata-helper.js"></script> 211cb0ef41Sopenharmony_ci<script> 221cb0ef41Sopenharmony_ci "use strict"; 231cb0ef41Sopenharmony_ci 241cb0ef41Sopenharmony_ci formDataPostFileUploadTest({ 251cb0ef41Sopenharmony_ci fileNameSource: "ASCII", 261cb0ef41Sopenharmony_ci fileBaseName: "file-for-upload-in-form.txt", 271cb0ef41Sopenharmony_ci }); 281cb0ef41Sopenharmony_ci 291cb0ef41Sopenharmony_ci formDataPostFileUploadTest({ 301cb0ef41Sopenharmony_ci fileNameSource: "x-user-defined", 311cb0ef41Sopenharmony_ci fileBaseName: "file-for-upload-in-form-\uF7F0\uF793\uF783\uF7A0.txt", 321cb0ef41Sopenharmony_ci }); 331cb0ef41Sopenharmony_ci 341cb0ef41Sopenharmony_ci formDataPostFileUploadTest({ 351cb0ef41Sopenharmony_ci fileNameSource: "windows-1252", 361cb0ef41Sopenharmony_ci fileBaseName: "file-for-upload-in-form-☺😂.txt", 371cb0ef41Sopenharmony_ci }); 381cb0ef41Sopenharmony_ci 391cb0ef41Sopenharmony_ci formDataPostFileUploadTest({ 401cb0ef41Sopenharmony_ci fileNameSource: "JIS X 0201 and JIS X 0208", 411cb0ef41Sopenharmony_ci fileBaseName: "file-for-upload-in-form-★星★.txt", 421cb0ef41Sopenharmony_ci }); 431cb0ef41Sopenharmony_ci 441cb0ef41Sopenharmony_ci formDataPostFileUploadTest({ 451cb0ef41Sopenharmony_ci fileNameSource: "Unicode", 461cb0ef41Sopenharmony_ci fileBaseName: "file-for-upload-in-form-☺.txt", 471cb0ef41Sopenharmony_ci }); 481cb0ef41Sopenharmony_ci 491cb0ef41Sopenharmony_ci formDataPostFileUploadTest({ 501cb0ef41Sopenharmony_ci fileNameSource: "Unicode", 511cb0ef41Sopenharmony_ci fileBaseName: `file-for-upload-in-form-${kTestChars}.txt`, 521cb0ef41Sopenharmony_ci }); 531cb0ef41Sopenharmony_ci</script> 54