test escaped brackets and parentheses

pull/6435/head
Ignatius Bagus 5 years ago
parent ae5aac3534
commit 4e0ea72f36
No known key found for this signature in database
GPG Key ID: 357C6674A45CC06B

@ -0,0 +1,17 @@
[
{
"code": "css-invalid-global-selector",
"message": ":global(...) must contain a single selector",
"start": {
"line": 5,
"column": 5,
"character": 66
},
"end": {
"line": 5,
"column": 33,
"character": 94
},
"pos": 66
}
]

@ -0,0 +1,12 @@
<style>
div :global(.a\,bc\] ~ .d\,ef\)) {
color: red;
}
div :global(.abc\] + .def\), h1) {
color: red;
}
</style>
<div>
<h1>hello world</h1>
</div>
Loading…
Cancel
Save