slotted-placeholder.html (671B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>CSS Scoping Test: ::slotted() allows ::placeholder</title> 4 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io"> 5 <link rel="author" title="Mozilla" href="https://mozilla.org"> 6 <link rel="help" href="https://drafts.csswg.org/css-scoping/#slotted-pseudo"> 7 <link rel="match" href="slotted-placeholder-ref.html"> 8 <div id="host"> 9 <input placeholder="I should be green"> 10 <textarea placeholder="I should be green"></textarea> 11 </div> 12 <script> 13 host.attachShadow({ mode: "open" }).innerHTML = ` 14 <style> 15 ::slotted(*)::placeholder { color: green } 16 </style> 17 <slot></slot> 18 `; 19 </script>