We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Before opening an issue, please search and see if it has already been raised. One of the cases was fixed in:
This is a:
Calling URL.createObjectURL fails in most occurences:
--mixed-context
URL.createObjectURL
allownw
The error is
Uncaught TypeError: Failed to execute 'createObjectURL' on 'URL': Overload resolution failed.
Minimal code that reproduces that:
URL.createObjectURL(new Blob([]))
Calling URL.createObjectURL should work
The text was updated successfully, but these errors were encountered:
I found a temporary solution:
<!-- Fix Blob Start --> <script>delete window.Blob;</script> <script src="https://cdn.jsdelivr.net/npm/[email protected]/Blob.min.js"></script> <!-- Fix Blob End --> <script> const objectURL = URL.createObjectURL(new Blob(["test"])); console.log(objectURL); // 'data:;base64,dGVzdA==' </script>
But it is still a problem, I hope it can be solved reasonably.
Sorry, something went wrong.
No branches or pull requests
Issue Type
Before opening an issue, please search and see if it has already been raised.
One of the cases was fixed in:
This is a:
Current/Missing Behavior
Calling URL.createObjectURL fails in most occurences:
--mixed-context
URL.createObjectURL
is called in an nw-enabled webview (allownw
attribute).URL.createObjectURL
is called in a first window after creating a second one.The error is
Minimal code that reproduces that:
Expected/Proposed Behavior
Calling URL.createObjectURL should work
Additional Info
The text was updated successfully, but these errors were encountered: