1449243.html (350B)
1 <!doctype html> 2 <div id="host"></div> 3 <script> 4 host.attachShadow({ mode: 'open' }).innerHTML = ` 5 <style> 6 div { color: green } 7 </style> 8 <div></div> 9 `; 10 document.body.offsetTop; 11 host.shadowRoot.styleSheets[0].insertRule("[foo] { color: green }", 0); 12 host.shadowRoot.querySelector("div").setAttribute("foo", "bar"); 13 </script>