You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/css/samples/siblings-combinator-await/input.svelte

30 lines
508 B

<script>
let promise = Promise.resolve();
</script>
<style>
.a + .b { color: green; }
.a + .c { color: green; }
.a + .d { color: green; }
.b + .e { color: green; }
.c + .e { color: green; }
.d + .e { color: green; }
/* no match */
.a + .e { color: green; }
.b + .c { color: green; }
.c + .d { color: green; }
.b + .d { color: green; }
</style>
<div class="a" />
{#await promise}
<div class="b" />
{:then value}
<div class="c" />
{:catch error}
<div class="d" />
{/await}
<div class="e" />