1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:37:44 +00:00

LibWeb: Add FormDataIterator implementation

This adds the FormDataIterator implementation so we can iterate over
FormData.{keys(),values(),entries()}.
This commit is contained in:
Kenneth Myhra 2023-03-05 17:29:11 +01:00 committed by Linus Groh
parent 680e970597
commit be52e7171a
8 changed files with 133 additions and 2 deletions

View file

@ -19,5 +19,5 @@ interface FormData {
boolean has(USVString name);
undefined set(USVString name, USVString value);
undefined set(USVString name, Blob blobValue, optional USVString filename);
// FIXME: iterable<USVString, FormDataEntryValue>;
iterable<USVString, FormDataEntryValue>;
};