A form-associated custom element calls `internals.setFormValue()` with a `FormData` object instead of a string or `File`. What is the under-the-hood effect on form submission?
const fd = new FormData();
fd.append('a', '1');
fd.append('b', '2');
internals.setFormValue(fd);