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 foo='bar'></div>
<div baz></div>
<style> <style>
[foo] { [foo] {
color: red; color: red;
} }
[baz] {
color: blue;
}
</style> </style>

Loading…
Cancel
Save