style-sharing.html (291B)
1 <!doctype html> 2 <div id="host"></div> 3 <script> 4 let root = host.attachShadow({mode: 'open'}); 5 root.innerHTML = ` 6 <style> 7 #test { 8 color: green; 9 } 10 </style> 11 <span id="test">Should be green</span> 12 <span id="test2">Should not be green</span> 13 `; 14 </script>