mirror of https://github.com/sveltejs/svelte
make CSS DCE case-insensitive - fixes #1269
parent
8717ff8c3c
commit
ee01fb58c6
@ -0,0 +1,22 @@
|
||||
export default {
|
||||
cascade: false,
|
||||
|
||||
warnings: [{
|
||||
message: 'P component is not defined',
|
||||
loc: {
|
||||
line: 2,
|
||||
column: 1
|
||||
},
|
||||
end: {
|
||||
line: 2,
|
||||
column: 22
|
||||
},
|
||||
pos: 7,
|
||||
frame: `
|
||||
1: <div>
|
||||
2: <P>this is styled</P>
|
||||
^
|
||||
3: </div>
|
||||
4:`
|
||||
}]
|
||||
};
|
@ -0,0 +1 @@
|
||||
p.svelte-xyz{color:red}
|
@ -0,0 +1 @@
|
||||
<div><p class="svelte-xyz">this is styled</p></div>
|
@ -0,0 +1,9 @@
|
||||
<div>
|
||||
<P>this is styled</P>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
p {
|
||||
color: red;
|
||||
}
|
||||
</style>
|
Loading…
Reference in new issue