Set background-image to a blob: URI

Solution 1:

Try this:

<script>
var tmp_path = URL.createObjectURL('path/to/image.png');
document.getElementbyId('divId').style.background = url(tmp_path);
</script>