file_path stringlengths 3 280 | file_language stringclasses 66
values | content stringlengths 1 1.04M | repo_name stringlengths 5 92 | repo_stars int64 0 154k | repo_description stringlengths 0 402 | repo_primary_language stringclasses 108
values | developer_username stringlengths 1 25 | developer_name stringlengths 0 30 | developer_company stringlengths 0 82 |
|---|---|---|---|---|---|---|---|---|---|
crates/swc_css_parser/tests/recovery/at-rule/media/feature-range-3/input.css | CSS | @media (400px > = width > = 700px) {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/media/feature-range-4/input.css | CSS | @media (400px >= width ! 700px) {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/media/feature-range-5/input.css | CSS | @media (400px <= width >= 700px) {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/media/feature-range-6/input.css | CSS | @media (400px >= width <= 700px) {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/media/feature/input.css | CSS | @media screen and {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/media/invalid-nesting/input.css | CSS | @media (min-width: 480px) {
max-inline-size: 1024px;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/media/media-type/input.css | CSS | @media only layer {
a {
color: red;
}
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/media/wrong-stylesheet/input.css | CSS | @media print {
color: teal;
main {
color: orange;
}
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/no-end/input.css | CSS | @unknown | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/no-semi/input.css | CSS | @media screen {@content}
@charset "UTF-8"
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/page/invalid-nesting/input.css | CSS | @page :first {
color: green;
@top-left {
content: "foo";
color: blue;
}
@top-right {
@top-right {
content: "zzz";
}
content: "bar";
}
margin: 20px;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/page/invalid-pseudo/input.css | CSS | @page :unknown {
margin: 2cm;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/page/no-space/input.css | CSS | @page Page: blank {
@top-center { content: none }
margin-left: 4cm;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/page/without-page/input.css | CSS | @top-left {
content: "foo";
color: blue;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/supports/empty-in-parens/input.css | CSS | @supports ( ) {
* { background: red; }
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/supports/no-parens/input.css | CSS | @supports display: flex {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/supports/non-standard-prelude/input.css | CSS | @supports (--element(".minwidth", { "minWidth": 300 })) {
[--self] {
background: greenyellow;
}
}
@supports ({"example": 1}) {
* { background: red; }
}
@supports (("example": 1)) {
* { background: red; }
}
@supports ([]) {
* { background: red; }
}
@supports ([color: red]) {
* { backg... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/supports/wrong-or-and/input.css | CSS | @supports (transition-property: color) or (animation-name: foo) and (transform: rotate(10deg)) {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/bad-url-token/double-quotes/input.css | CSS | div {
background: url(image".png);
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/bad-url-token/escaped/input.css | CSS | a {
background: \url(te st);
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/bad-url-token/invalid-escape/input.css | CSS | div {
background: url(image.png\
);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/bad-url-token/left-parenthesis/input.css | CSS | div {
background: url(image(.png);
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/bad-url-token/single-quotes/input.css | CSS | div {
background: url(image'.png);
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/bad-url-token/unclosed/input.css | CSS | .foo {
background: url(foo bar;
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/bad-url-token/whitespace-in-middle/input.css | CSS | a {
background-image: url( ./image.jpg a );
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/bad-url-token/whitespace/input.css | CSS | div {
background: url(image.
png);
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/cdo-and-cdc/input.css | CSS | <!-- 123 -->
div {
color: red;
<!--
test
-->
}
div {
color: red;
<!--
test
-->
color: blue;
}
div {
color: red;
<!--
test
-->;
color: blue;
}
a {
<!-- .class {
color: red;
}
}
@keyframes box {
<!-- -->
50% { left: 0; }
90% { left: 300px; }
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/comments/bad-comment-1/input.css | CSS | // comment | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/comments/bad-comment-2/input.css | CSS | /*! bad comment * | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/comments/bad-comment-3/input.css | CSS | /*! bad comment | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/comments/declaration/input.css | CSS | a {
prop: url("test") /* comment */ /* comment */
/* comment */:
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/declaration/bad-value-1/input.css | CSS | a {
--var: [;
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/declaration/bad-value-2/input.css | CSS | a {
--var: (;
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/declaration/bad-value/input.css | CSS | a {
value: );
value: ];
value: url(test test);
--foo: !;
--foo: );
--foo: ];
--foo: !;
value: !!;
value: ! !important;
value: ! !important unknown;
value: ! unknown;
value: ! ! !;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/declaration/basic/input.css | CSS | .class {
prop: ;
color: red;
}
.class {
prop: !!;
color: red;
}
a {
test;
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/declaration/important-1/input.css | CSS | a {
color: red !importan;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/declaration/important/input.css | CSS | .a {
color: white !!important;
}
.class {
color: red red red !important !important;
}
.class {
color: red red red !important!important ;
}
.class {
color: red red red /* test*/ !important /*test*/ !important /*test*/ ;
}
.class {
color: red red red !important !important!important;
}
.class {
... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/declaration/wrong-name-2/input.css | CSS | a {
func();
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/declaration/wrong-name-3/input.css | CSS | a {
func(20px);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/declaration/wrong-name/input.css | CSS | a {
20: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/delim-token/ampersand/input.css | CSS | a {
prop: &;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/delim-token/asterisk/input.css | CSS | a {
color: *;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/delim-token/at-sign/input.css | CSS | a {
color: @ red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/delim-token/bang/input.css | CSS | a {
color: !!;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/delim-token/bar/input.css | CSS | a {
prop: |;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/delim-token/caret/input.css | CSS | a {
prop: ^;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/delim-token/dollar/input.css | CSS | a {
prop: $;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/delim-token/equals/input.css | CSS | a {
prop: =;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/delim-token/greater-than/input.css | CSS | a {
prop: >;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/delim-token/hash/input.css | CSS | a {
color: ##;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/delim-token/less-than/input.css | CSS | a {
color: <;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/delim-token/minus/input.css | CSS | a {
prop: -;
prop1: 1 - 2;
prop2: func(1 - 2);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/delim-token/percent/input.css | CSS | a {
prop: %;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/delim-token/plus/input.css | CSS | a {
prop: +;
prop1: 1 + 2;
prop2: func(1 + 2);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/delim-token/question-mark/input.css | CSS | a {
color: ?;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/delim-token/star/input.css | CSS | a {
color: *;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/delim-token/tilde/input.css | CSS | a {
color: ~;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/escaped/declaration-value/input.css | CSS | a { value: x } | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/escaped/id-selector/input.css | CSS | #0\2chash {} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/function/bad-comment-2/input.css | CSS | a {
background: url(
/* test */
"test.png"
);
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/function/bad-comment/input.css | CSS | a {
background: url(
/* test */
test.png
);
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/function/base/input.css | CSS | div {
prop: func(1 + 2);
prop: func(ident.ident);
prop: func3( ident.ident );
prop: func([foo bar]);
prop: func((foo, bar));
prop: func({ foo: bar });
prop: func(1, 2);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/function/calc/division/input.css | CSS | .style {
width: calc(2px/1px);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/function/calc/space/input.css | CSS | .style {
width: calc(2px+1px);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/function/nested-unclosed/input.css | CSS | a {
prop: url("test") :
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/function/rgb/input.css | CSS | .div {
color: rgb("test");
color: rgb("test", 100, 100);
color: rgb(100, "test", 100);
color: rgb(100, 100, "test");
color: rgb(100, 100, 100, "test");
color: rgb("test" 100 100);
color: rgb(100 "test" 100);
color: rgb(100 100 "test");
color: rgb(100 100 100 / "test");
color: ... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/function/unclosed-2/input.css | CSS | .style {
grid-template-columns: repeat(4, [col-start] 12px
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/function/unclosed-3/input.css | CSS | .style {
grid-template-columns: rgb(255, 255, 255 | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/function/unclosed/input.css | CSS | .style {
width: min(500px;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/function/var/input.css | CSS | .style {
border: var(#fff);
border: var(calc(10px + 10px));
border: var(90rem);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/hacks/input.css | CSS | /* Android */
.selector:not(*:root) {}
@media screen and (min-width:0\0) {}
/* Chrome */
.selector:not(*:root) {}
@supports (-webkit-appearance:none) {}
.selector { (;property: value;); }
.selector { [;property: value;]; }
@media \\0 screen {}
@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolutio... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/ie-progid/input.css | CSS | a {
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#4f4f4f',endColorstr='#292929',GradientType=0);
filter: progid:DXImageTransform.Microsoft.Blur(pixelradius=2) progid:DXImageTransform.Microsoft.Wheel(duration=3);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/number/input.css | CSS | a {
prop: 10.10px
prop1: 10px
prop2: 10
prop3: 10.10
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/qualified-rule/basic/input.css | CSS | // test
a {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/qualified-rule/broken/input.css | CSS | foo
{
color: red;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/qualified-rule/double-slash-comment/input.css | CSS | // test
a {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/qualified-rule/only-block/input.css | CSS | {
}
{}
{
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/rules/at-rule-in-middle/input.css | CSS | a { color: red }
@media {};
a { color: blue }
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/rules/at-rule-with-semi/input.css | CSS | @media {};
a { color: red }
a { color: blue }
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/rules/unclosed-brackets/input.css | CSS | .class[attr= {
}
.class { color: red }
.class { color: blue } | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/rules/unclosed-curly/input.css | CSS | test};
a { color: red }
a { color: blue; }
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/selector/attribute/invalid-matcher-1/input.css | CSS | [href=] {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/selector/attribute/invalid-matcher-2/input.css | CSS | [href#="test"] {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/selector/attribute/invalid-matcher-3/input.css | CSS | a[title * = "title" i ] {
color: purple;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/selector/attribute/invalid-matcher-4/input.css | CSS | a[title%="title"] {
color: purple;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/selector/attribute/invalid-matcher/input.css | CSS | [href==".org"] {} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/selector/attribute/invalid-modifier/input.css | CSS | [href="test" "z"] {} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/selector/attribute/unclosed/input.css | CSS | .class[attr= {
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/selector/combinator/only/input.css | CSS | > {
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/selector/combinator/two/input.css | CSS | span ~ + {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/selector/id/invalid/input.css | CSS | #1234 {
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/selector/list/input.css | CSS | , {
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/selector/pseudo-class/an-plus-b/input.css | CSS | :nth-child(unknown) {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/selector/pseudo-class/invalid-function/input.css | CSS | : nth-child(2) {
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/selector/pseudo-class/invalid-ident/input.css | CSS | : first-child {
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/selector/pseudo-class/invalid/input.css | CSS | a: b {}
a: b {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/selector/pseudo-element/after/input.css | CSS | :: foo {
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/selector/pseudo-element/between/input.css | CSS | : :foo {
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/selector/pseudo-element/invalid/input.css | CSS | a::1 {
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/simple-block/unclosed-1/input.css | CSS | @media screen {
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.