chromium/third_party/blink/web_tests/fast/events/resources/dropzone.js

function drop(e)
{
    printDropEvent(e);
    cancelDrag(e);
}
    
function cancelDrag(e)
{
    e.preventDefault();
}