From ea6dc2fe9369891f52519eaae471e0ae7843da74 Mon Sep 17 00:00:00 2001 From: Euclid Ye Date: Wed, 13 May 2026 11:43:54 +0800 Subject: [PATCH] Specify Data URL media-type as `application/octet-stream` when `mimeType` not available --- index.bs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.bs b/index.bs index 83e32a8..5258ba3 100644 --- a/index.bs +++ b/index.bs @@ -1190,7 +1190,7 @@ which switches on |type| and runs the associated steps: * Use |mimeType| as part of the Data URL if it is available in keeping with the Data URL specification [[!RFC2397]]. - * If |mimeType| is not available return a Data URL without a media-type. [[!RFC2397]]. + * If |mimeType| is not available return a Data URL with media-type "application/octet-stream". [[!RFC2397]]. Issue(104): Better specify how the DataURL is generated.