From 7e899616f0b36ca8ad91f96cd0a0970848f94f4b Mon Sep 17 00:00:00 2001 From: Daniel Heath Date: Wed, 15 Jan 2020 16:54:01 +1100 Subject: [PATCH] Add caveat for IE use of createObjectUrl For instance: https://github.com/mozilla/pdf.js/issues/3977 When reading a image out of a pdf, the resulting Blob does not have its readonly `type` property set. As a result, IE11 will only sometimes display the image. I'm as yet unclear why it does not behave predictably; I have had the same file fail or succeed on different runs. --- api/URL.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api/URL.json b/api/URL.json index ac782129128d02..08ce5bcefbbe02 100644 --- a/api/URL.json +++ b/api/URL.json @@ -187,7 +187,8 @@ "notes": "createObjectURL() is no longer available within the context of a ServiceWorker." }, "ie": { - "version_added": "10" + "version_added": "10", + "notes": "If the underlying object does not have a content type set, using this URL as the src of an img tag fails intermittently with error DOM7009." }, "nodejs": { "version_added": false