Is there a way to create async CSS with integrity? I've tried using preload without integrity and rel=stylesheet with integrity, but I can't seem to get it to work. Am I missing something?
<link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.3/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous" integrity="sha384-MIwDKRSSImVFAZCVLtU0LMDdON6KVCrZHyVQQj6e8wIEJkW4tvwqXrbMIya1vriY" as="style" onload="this.rel='stylesheet'">
<noscript><link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.3/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous" integrity="sha384-MIwDKRSSImVFAZCVLtU0LMDdON6KVCrZHyVQQj6e8wIEJkW4tvwqXrbMIya1vriY"></noscript>
I'm encountering an issue where my browser doesn't load the CSS with this code. The dev console is empty, which is confusing me. This should be a straightforward process, so why isn't it working?