test attribute only selector when html is also attribute only

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

Loading…
Cancel
Save