test attribute only selector when html is also attribute only

pull/7738/head
Johnny Hauser 8 years ago
parent a91a09fb71
commit fa5a02774b

@ -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