test attribute only selector when html is also attribute only

pull/906/head
Johnny Hauser 7 years ago
parent 8edfd643f1
commit 97d8125030

@ -1 +1 @@
[foo][svelte-xyz]{color:red}
[foo][svelte-xyz]{color:red}[baz][svelte-xyz]{color:blue}

@ -1,7 +1,11 @@
<div foo='bar'></div>
<div baz></div>
<style>
[foo] {
color: red;
}
[baz] {
color: blue;
}
</style>

Loading…
Cancel
Save