mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 20:22:45 +00:00 
			
		
		
		
	 be52e7171a
			
		
	
	
		be52e7171a
		
	
	
	
	
		
			
			This adds the FormDataIterator implementation so we can iterate over
FormData.{keys(),values(),entries()}.
		
	
			
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			999 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			999 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <FileAPI/Blob.idl>
 | |
| #import <FileAPI/File.idl>
 | |
| #import <HTML/HTMLFormElement.idl>
 | |
| 
 | |
| typedef (File or USVString) FormDataEntryValue;
 | |
| 
 | |
| // https://xhr.spec.whatwg.org/#interface-formdata
 | |
| [Exposed=Window, UseNewAKString]
 | |
| interface FormData {
 | |
|     constructor(optional HTMLFormElement form);
 | |
| 
 | |
|     undefined append(USVString name, USVString value);
 | |
|     undefined append(USVString name, Blob blobValue, optional USVString filename);
 | |
|     undefined delete(USVString name);
 | |
|     // FIXME: The BindingsGenerator is not able to resolve the Variant's visit for FormDataEntryValue when
 | |
|     // the return value for one function returns an optional FormDataEntryValue while the others does not.
 | |
|     (File or USVString)? get(USVString name);
 | |
|     sequence<FormDataEntryValue> getAll(USVString name);
 | |
|     boolean has(USVString name);
 | |
|     undefined set(USVString name, USVString value);
 | |
|     undefined set(USVString name, Blob blobValue, optional USVString filename);
 | |
|     iterable<USVString, FormDataEntryValue>;
 | |
| };
 |