gecko-dev/layout/reftests/forms/input/text/shadow-rules.html

11 строки
234 B
HTML

<!doctype html>
<div id="host"></div>
<script>
host.attachShadow({ mode: "open" }).innerHTML = `
<style>
input > *|* { color: red !important; }
</style>
<input type="text" value="Should not be red">
`;
</script>