Consistent parsing for urls in drop event

Hello,

I’ve been playing with drop events and noticed some differences between browsers. Click url in navigation bar and drop in editor:

Chrome

event.dataTransfer('text/uri-list') : 'http://google.com'
event.dataTransfer('text/plain') : 'google.com'

FF

event.dataTransfer('text/x-moz-url') : 'http://www.google.com/\r\nGoogle'
event.dataTransfer('text/plain') : 'http://www.google.com/'

The actual content that appears in the editor differs, as text/plain is used. Can’t this case be handled inside prosemirror?

Thank you.

No, sorry, this is a decision the browser makes, and I consider it out of scope for the library to second-guess it.