You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In MS Edge, if you pass a malformed url like http://Photo@ to the Url constructor of this library, you get a mysterious exception "A security problem occurred". You can see the same error by just running var link = document.createElement("a"); link.href = "http://Photot@"; link["protocol"]; in console. It would be better if domurl caught this and raised a more understandable error.
The text was updated successfully, but these errors were encountered:
In MS Edge, if you pass a malformed url like
http://Photo@
to the Url constructor of this library, you get a mysterious exception "A security problem occurred". You can see the same error by just runningvar link = document.createElement("a"); link.href = "http://Photot@"; link["protocol"];
in console. It would be better if domurl caught this and raised a more understandable error.The text was updated successfully, but these errors were encountered: