pull/10502/head
Rich Harris 3 years ago
parent 05701bdf3a
commit e5eef742d0

@ -10,7 +10,7 @@
h2.svelte-xyz > span > b:where(.svelte-xyz) { h2.svelte-xyz > span > b:where(.svelte-xyz) {
color: red; color: red;
} }
h2.svelte-xyz span b:where(.svelte-xyz) { h2.svelte-xyz span:where(.svelte-xyz) b:where(.svelte-xyz) {
color: red; color: red;
} }
h2.svelte-xyz b:where(.svelte-xyz) { h2.svelte-xyz b:where(.svelte-xyz) {

@ -1,3 +1,3 @@
div.svelte-xyz section p:where(.svelte-xyz) { div.svelte-xyz section:where(.svelte-xyz) p:where(.svelte-xyz) {
color: red; color: red;
} }

@ -1 +1 @@
<div class="svelte-xyz"><section><p class="svelte-xyz">this is styled</p></section></div> <div class="svelte-xyz"><section class="svelte-xyz"><p class="svelte-xyz">this is styled</p></section></div>

@ -1,4 +1,4 @@
a.svelte-xyz b c span:where(.svelte-xyz) { a.svelte-xyz b:where(.svelte-xyz) c:where(.svelte-xyz) span:where(.svelte-xyz) {
color: red; color: red;
font-size: 2em; font-size: 2em;
font-family: 'Comic Sans MS'; font-family: 'Comic Sans MS';

@ -1,12 +1,12 @@
<a class="svelte-xyz"> <a class="svelte-xyz">
<b> <b class="svelte-xyz">
<c> <c class="svelte-xyz">
<span class="svelte-xyz"> <span class="svelte-xyz">
Big red Comic Sans Big red Comic Sans
</span> </span>
<span class="foo svelte-xyz"> <span class="foo svelte-xyz">
Big red Comic Sans Big red Comic Sans
</span> </span>
</c> </c>
</b> </b>
</a> </a>

Loading…
Cancel
Save