swc/css/parser/tests/fixture/rome/selectors/input.css

40 lines
352 B
CSS
Raw Normal View History

2021-08-19 08:16:32 +03:00
div, div + #id, div ~ #id, div > #id {
}
.escaped\.class\.name {
}
.class + * {
}
a[title] {
color: purple;
}
a[title = "title"] {
color: purple;
}
a[title~="title" i] {
color: purple;
}
a[title = "title"][href*="image/*" S] {
color: purple;
}
p:nth-last-of-type(2) {
}
:lang(en, ko) {
}
::pseudo-elem() {
}
::pseudo-elem(a, b) {
}