mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 02:22:43 +00:00 
			
		
		
		
	 d4a890080d
			
		
	
	
		d4a890080d
		
	
	
	
	
		
			
			NewAKString is effectively the default for any new IDL interface, so let's mark this as the default behavior. It also makes it much easier to figure out whatever interfaces are still left to port over to new AK String.
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			747 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			747 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| [Exposed=(Window,Worker), Serializable]
 | |
| interface Blob {
 | |
|     constructor(optional sequence<BlobPart> blobParts, optional BlobPropertyBag options = {});
 | |
| 
 | |
|     readonly attribute unsigned long long size;
 | |
|     readonly attribute DOMString type;
 | |
| 
 | |
|     // slice Blob into byte-ranged chunks
 | |
|     Blob slice(optional long long start, optional long long end, optional DOMString contentType);
 | |
| 
 | |
|     // read from the Blob.
 | |
|     [NewObject] ReadableStream stream();
 | |
|     [NewObject] Promise<USVString> text();
 | |
|     [NewObject] Promise<ArrayBuffer> arrayBuffer();
 | |
| };
 | |
| 
 | |
| enum EndingType { "transparent", "native" };
 | |
| 
 | |
| dictionary BlobPropertyBag {
 | |
|     DOMString type = "";
 | |
|     EndingType endings = "transparent";
 | |
| };
 | |
| 
 | |
| typedef (BufferSource or Blob or USVString) BlobPart;
 |