I wonder what the benefits and difference are when using styles as Blob links:
<link rel="stylesheet" href="blob:http://www.domain.com/hash-here">
above the standard tag:
<style>...</style>
I mean creating a blob 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.
source
share