I wonder what is the benefit and difference when using styles as Blob links:
<link rel="stylesheet" href="blob:http://www.domain.com/hash-here">
over the standard tag:
<style>...</style>
I mean Blob creation like:
var blob = new Blob([css_here], {type: 'text/css'});
var link = document.createElement('link');
link.rel = 'stylesheet';
link.href = window.URL.createObjectURL(blob);
head.appendChild(link);
Thanks in advance.