shadow-rules.html (234B)
1 <!doctype html> 2 <div id="host"></div> 3 <script> 4 host.attachShadow({ mode: "open" }).innerHTML = ` 5 <style> 6 input > *|* { color: red !important; } 7 </style> 8 <input type="text" value="Should not be red"> 9 `; 10 </script>