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/fixture/property/escaped/input.css | CSS | table {
colo\r: \red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/attribute/input.css | CSS | [title] {}
[title=foo] {}
[title="foo"] {}
[ title = "foo" ] {}
[ title = "foo" ] {}
[lang~="en-us"] {}
[lang|="zh"] {}
[href^="#"] {}
[href$=".org"] {}
[href*="example"] {}
[href*="insensitive" i] {}
[href*="insensitive" I] {}
[href*="cAsE" s] {}
[href*="cAsE" S] {}
[foo|att=val] {}
[*|att] {}
[ *|att ] {}... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/class/input.css | CSS | .class {}
.♥ {}
.© {}
.“‘’” {}
.☺☃ {}
.⌘⌥ {}
.𝄞♪♩♫♬ {}
.💩 {}
.\? {}
.\@ {}
.\. {}
.\3A \) {}
.\3A \`\( {}
.\31 23 {}
.\31 a2b3c {}
.\<p\> {}
.\<\>\<\<\<\>\>\<\> {}
.\+\+\+\+\+\+\+\+\+\+\[\>\+\+\+\+\+\+\+\>\+\+\+\+\+\+\+\+\+\+\>\+\+\+\>\+\<\<\<\<\-\]\>\+\+\.\>\+\.\+\+\+\+\+\+\+\.\.\+\+\+\.\>\+\+\.\<\<\+\+\+\+\+\+\+\+\... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/comments/input.css | CSS | /* { } */a b {}
/* test */a b {}
/* { } */ a b {}
/* test */ a b {}
a/* { } */b {}
a/* test */b {}
a /* { } */ b {}
a /* test */ b {}
a b/* { } */ {}
a b/* test */ {}
a b /* { } */ {}
a b /* test */ {}
a b/* { } */{}
a b/* test */{}
a/* test */,/* test */b{}
a /* test */ , /* test */ b {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/complex/input.css | CSS | article p {}
article
p {}
article p {}
article > p {}
article
>
p {}
article > p {}
p + img {}
p
+
img {}
p + img {}
p ~ img {}
p
~
img {}
p ~ img {}
article > p > a {}
article
>
p
>
a {}
div p {}
.class p {}
div .class {}
.class .class {}
#id p {}
div #id {}
#id #id {}
[attribute] p {}
div ... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/compound/input.css | CSS | .one {}
.foo.bar {}
.foo#id {}
.class[target] {}
.class#id[target] {}
#id.class {}
#id.class[target] {}
div#thing:hover {}
div#thing::before {}
a[href='place']:hover {}
a[href='place']::before {}
.one.two.three {}
button.btn-primary {}
*#z98y {}
#one#two {}
#one.two.three {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/id/input.css | CSS | #id {}
#♥ {}
#© {}
#“‘’” {}
#☺☃ {}
#⌘⌥ {}
#𝄞♪♩♫♬ {}
#💩 {}
#\? {}
#\@ {}
#\. {}
#\3A \) {}
#\3A \`\( {}
#\31 23 {}
#\31 a2b3c {}
#\<p\> {}
#\<\>\<\<\<\>\>\<\> {}
#\+\+\+\+\+\+\+\+\+\+\[\>\+\+\+\+\+\+\+\>\+\+\+\+\+\+\+\+\+\+\>\+\+\+\>\+\<\<\<\<\-\]\>\+\+\.\>\+\.\+\+\+\+\+\+\+\.\.\+\+\+\.\>\+\+\.\<\<\+\+\+\+\+\+\+\+\+\+... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/list/input.css | CSS | div, p {}
div , p {}
div , p {}
a, a[href='place'] {}
a #foo > [foo='bar'], .FOO {}
div, p, a {}
div,p,a{}
div , p , a {}
div
,
p
,
a
{}
.foo, .bar, *.baz {}
input::-moz-placeholder, input::placeholder {}
a,b,c,d,e,f,g {}
a, b, c, d, e, f, g {}
*, * {}
#id, #id2 {}
h1, h2 {}
.class, .foo {}
[attr], [... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/nesting/input.css | CSS | table.colortable {
& td {
text-align: center;
&.c { text-transform:uppercase }
&:first-child, &:first-child + td { border:1px solid black }
}
& th {
text-align:center;
background:black;
color:white;
}
}
.foo {
color: blue;
& > .bar { color: red; }
}
.... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-class/an-plus-b/input.css | CSS | :nth-child(2n+1) {}
:nth-child(2n +1) {}
:nth-child(2n + 1) {}
:nth-child(2n+ 1) {}
:nth-child(2n-1) {}
:nth-child(2n -1) {}
:nth-child(2n- 1) {}
:nth-child(2n - 1) {}
:nth-child(-2n+1) {}
:nth-child(-2n +1) {}
:nth-child(-2n + 1) {}
:nth-child(-2n+ 1) {}
:nth-child(-2n-1) {}
:nth-child(-2n -1) {}
:nth-child(-2n - 1) {... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-class/any/input.css | CSS | :-webkit-any(textarea) {}
:-moz-any(textarea) {}
:-webkit-any(header, main, footer) p:hover {}
:-moz-any(header, main, footer) p:hover {}
:-webkit-any(.class[test]) {}
:-moz-any(.class[test]) {}
:-webkit-any(.class[test], .class) {}
:-moz-any(.class[test], .class) {}
:-webkit-any(h1),
:-webkit-any( #div1, b ),
:-webkit... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-class/basic/input.css | CSS | :root {}
:any-link {}
button:hover {}
div\:before {}
div\::before {}
iNpUt {}
:matches(section, article, aside, nav) h1 {}
input:not([type='submit']) {}
div.sidebar:has(*:nth-child(5)):not(:has(*:nth-child(6))) {}
::-webkit-scrollbar-thumb:window-inactive {}
::-webkit-scrollbar-button:horizontal:decrement {}
.test::-we... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-class/current/input.css | CSS | :current(p, li, dt, dd) {} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-class/dir/input.css | CSS | :dir(ltr) {}
:dir( ltr ) {}
:dir(rtl) {}
:dir( rtl ) {}
:dir( RTL ) {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-class/future/input.css | CSS | :future(p, li, dt, dd) {} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-class/has/input.css | CSS | a:has(> img) {}
a:has( > img ) {}
a:has( > img ) {}
a:has( > img , > img ) {}
a:has( img ) {}
dt:has(+ dt) {}
section:not(:has(h1, h2, h3, h4, h5, h6)) {}
section:has(:not(h1, h2, h3, h4, h5, h6)) {}
div:has(p) {}
.header-group:has(h2):has(.subtitle) h2 {}
/* Forgiving */
a:has(<> img, > img... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-class/host-context/input.css | CSS | :host-context(h1) {}
:host-context( h1 ) {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-class/host/input.css | CSS | :host(.special-custom-element) {}
:host( .special-custom-element ) {}
:host(.footer) {}
:host {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-class/is/input.css | CSS | :is(ul) li {}
:is(ul, ol) li {}
:is(header, main, footer) p:hover {}
div:is(.cool, .fun) {}
:is(ol, ul, menu, dir) :is(ol, ul, menu, dir) :is(ul, menu, dir) {}
*|*:is(:hover, :focus) {}
*|*:is(*:hover, *:focus) {}
:is(ul, ol, .list) > [hidden] {}
:is(p, p:unsupported) {}
:is(:valid, :unsupported) {}
a:is(:not(:hover)) ... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-class/lang/input.css | CSS | :lang(\*-Latn) {}
:lang("*-Latn") {}
html:lang(fr-be) {}
html:lang(de) {}
html:lang(de, fr) {}
:lang(fr-be) > q {}
:lang(de) > q {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-class/matches/input.css | CSS | :matches(ul) li {}
:matches(ul, ol) li {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-class/not/input.css | CSS | :not(p) {}
:not( p ) {}
:not(
p
) {}
button:not([DISABLED]) {}
*:not(FOO) {}
html|*:not(:link):not(:visited) {}
.selector:not(*:root) {}
:not(:is(argument)) {}
p:not(.fancy) {}
body :not(p) {}
body :not(div):not(span) {}
body :not(div, .fancy) {}
h2 :not(span.foo) {}
body > h2:not(:first-of-type):not(:last-of... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-class/past/input.css | CSS | :past(p, li, dt, dd) {} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-class/unknown/input.css | CSS | :unknown {}
:unknown() {}
:unknown(foo) {}
:unknown(foo bar) {}
:unknown(foo, bar) {}
:unknown([foo]) {}
:unknown((foo bar)) {}
:unknown(((foo bar))) {}
:unknown({foo: bar}) {}
:unknown({{foo: bar}}) {}
:unknown({foo: bar !important}) {}
:unknown("string") {}
:unknown("string", foo) {}
:unknown('string') {}
:unknown(ur... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-class/where/input.css | CSS | :where(ul) li {}
:where(ul, ol) li {}
:where(header, main, footer) p:hover {}
div:where(.cool, .fun) {}
:where(ol, ul, menu, dir) :where(ol, ul, menu, dir) :where(ul, menu, dir) {}
*|*:where(:hover, :focus) {}
*|*:where(*:hover, *:focus) {}
:where(ul, ol, .lwheret) > [hidden] {}
:where(p, p:unsupported) {}
:where(:vali... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-element/basic/input.css | CSS | a::after {}
dialog::backdrop {}
a::before {}
video::cue {}
video::cue(b) {}
video::cue-region {}
video::cue-region(#scroll) {}
::grammar-error {}
::marker {}
tabbed-custom-element::part(tab) {}
::placeholder {}
::selection {}
::slotted(*) {}
::slotted(span) {}
::spelling-error {}
::target-text {}
.form-ran... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-element/cue-region/input.css | CSS | video::cue-region {}
video::cue-region(#scroll) {}
video::cue-region( #scroll ) {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-element/cue/input.css | CSS | ::cue {}
::cue(v[voice="Esme"]) {}
::cue( v[voice="Esme"] ) {}
video::cue {}
video::cue(b) {}
video::cue(#cue1) {}
video::cue(:lang(en)) {} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-element/escaped/input.css | CSS | div::bef\ore {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-element/highlight/input.css | CSS | ::highlight(sample) {
background-color: rgba(0, 0, 255, 0.3);
}
:root::highlight(example-highlight) {
background-color: yellow;
color: blue;
}
div::highlight(bar) {
color: red;
}
div::highlight(foo) {
color: green;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-element/part/input.css | CSS | tabbed-custom-element::part(active) {}
tabbed-custom-element::part( active ) {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-element/slotted/input.css | CSS | ::slotted(*) {}
::slotted(span) {}
::slotted( span ) {}
::SLOTTED(SPAN) {
font-weight: bold;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/pseudo-element/unknown/input.css | CSS | ::unknown {}
::unknown() {}
::unknown(foo) {}
::unknown(foo bar) {}
::unknown(foo, bar) {}
::unknown([foo]) {}
::unknown((foo bar)) {}
::unknown(((foo bar))) {}
::unknown({foo: bar}) {}
::unknown({{foo: bar}}) {}
::unknown({foo: bar !important}) {}
::unknown("string") {}
::unknown("string", foo) {}
::unknown('string') ... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/selector/type/input.css | CSS | *|* {}
foo|h1 {}
foo|* {}
|h1 {}
*|h1 {}
h1 {}
\2d {}
\2d a {}
div\:before {}
d\iv {}
foreignObject {}
html textPath {}
div#thing {}
* {}
* #foo {}
*#foo {}
#foo * {}
.bar * {}
*.bar {}
*[lang^=en] {}
*:hover {}
*::before {}
* *:not(*) {}
a/**/{}
a/**/
{}
\@noat { }
h1\\{
color: \\;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/style-block/input.css | CSS | .foo { display: grid; }
.foo {
display: grid;
@media (orientation: landscape) {
grid-auto-flow: column;
}
}
.foo {
display: grid;
@media (orientation: landscape) {
grid-auto-flow: column;
@media (min-inline-size > 1024px) {
max-inline-size: 1024px;
}
... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/styled-jsx/selector/1/input.css | CSS | :global(.foo + a) {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/styled-jsx/selector/2/input.css | CSS | p :global(span:not(.test)) {
color: green;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/stylesheet/cdo-and-cdc/input.css | CSS | <!-- a {
color: red;
}
--> a {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/stylis/comma/01/input.css | CSS | a {
cursor: image-set(url(foo.jpg) 2x), pointer;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/turbo/4092/input.css | CSS | .carousel .control-dots .dot.selected, .carousel .control-dots .dot:hover {
opacity: 1;
filter: alpha(opacity=100);
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/value/angle/input.css | CSS | div {
transform: rotate(45deg);
transform: rotate(-50grad);
transform: rotate(3.1416rad);
transform: rotate(1.75turn);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/value/color/input.css | CSS | .hex-color {
color: #00ff00;
color: #0000ffcc;
color: #123;
color: #123c;
}
.rgb {
color: rgb(255, 165, 0);
color: rgb(255,165,0);
color: rGb(255,165,0);
color: rgb(0 255 0);
color: rgb(0%100%0%);
color: rgb(29 164 192 / 95%);
color: rgb(123 255 255 / .5);
color: rgb(123... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/value/custom-property/input.css | CSS | :root {
---:value;
--important:value!important;
--important1: value!important;
--important2: value !important;
--important3:value !important;
--important4: calc(1)!important;
--empty: ;
--empty2: /**/;
--empty3: !important;
--empty4:/**/ !important;
--empty5:/* 1 */ /* 2 */... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/value/dimension/input.css | CSS | div {
width: 100\%;
width: 100px2p;
width: 100px;
width: 100PX;
width: 100UNKNOWN;
width: 100НЕИЗВЕСТНО;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/value/escaped/input.css | CSS | table {
color: \red;
}
a {
background: url("a).png");
background: url(a;a);
background: url(a/*);
background: \;a;
}
:not([foo=")"]) { }
:not(div/*)*/) { }
:not(:nth-child(2n of [foo=")"])) { }
[foo=\"] { }
[foo=\{] { }
[foo=\(] { }
[foo=yes\:\(it\'s\ work\)] { }
\@noat { }
h1\\{
color: \\;
}... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/value/frequency/input.css | CSS | div {
prop: 1Hz;
prop: 1kHz;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/value/ident/input.css | CSS | a { animation: test; }
a { animation: тест; }
a { animation: т\ест; }
a { animation: 😋; }
a { animation: \\😋; }
a { animation: \😋; }
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/value/integer/input.css | CSS | div {
z-index: 12;
z-index: +123;
z-index: -456;
z-index: 0;
z-index: +0;
z-index: -0;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/value/length/input.css | CSS | div {
width: 100e\x;
width: 100ex;
width: 100px;
width: 100PX;
width: 100pX;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/value/percentage/input.css | CSS | div {
width: 0%;
width: 0.1%;
width: 100%;
width: 100.5%;
width: 100.1000%;
width: 1e0%;
width: 1e1%;
width: 1e2%;
width: 10e-1%;
width: 10e-5%;
width: 10e+2%;
}
div {
margin: -5%;
margin: -5.5%;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/value/quotes/input.css | CSS | a::before {
content: "This string is demarcated by double quotes.";
content: 'This string is demarcated by single quotes.';
content: "This is a string with \" an escaped double quote.";
content: "This string also has \22 an escaped double quote.";
content: 'This is a string with \' an escaped single... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/value/resolution/input.css | CSS | @media print and (min-resolution: 300dpi) {}
@media print and (min-resolution: 300dpcm) {}
@media print and (min-resolution: 300dppx) {}
@media print and (min-resolution: 300x) {}
.box {
background-image: -webkit-image-set(
url("small-balloons.jpg") 1x,
url("large-balloons.jpg") 2x);
ba... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/value/square-brackets/input.css | CSS | div {
prop: [];
prop: [ ];
prop: [row1-start];
prop: [ row1-start-with-spaces-around ];
prop: [red #fff 12px];
prop: [row1-start] 25% [row1-end row2-start] 25% [row2-end];
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/value/time/input.css | CSS | #delay {
font-size: 14px;
transition-property: font-size;
transition-duration: 4s;
transition-delay: 2s;
}
.box {
transition: width 2s, height 2s, background-color 2s, transform 2s;
}
.time {
transition-duration: 4s;
transition-duration: 4000ms;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/value/urange/input.css | CSS | @font-face {
font-family: 'Ampersand';
src: local('Times New Roman');
unicode-range: U+26; /* single codepoint */
unicode-range: u+26;
unicode-range: U+0-7F;
unicode-range: U+0025-00FF; /* codepoint range */
unicode-range: U+4??; /* wildcard range */
uni... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/value/url/input.css | CSS | div {
background: url(https://example.com/image.png);
background: URL(https://example.com/image.png);
background: \URL(https://example.com/image.png);
background: url("https://example.com/image.png");
background: url('https://example.com/image.png');
background: URL('https://example.com/image.pn... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/fixture/vercel-2175/input.css | CSS | .test {
border-color: hsla(var(--ds-gray-200-value), 1);
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/line-comment/css-in-js/1/input.css | CSS | // Line comment
foo {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/line-comment/css-in-js/10/input.css | CSS | // Only comment // test | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/line-comment/css-in-js/11/input.css | CSS | // test
a {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/line-comment/css-in-js/2/input.css | CSS | foo {
// Line comment
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/line-comment/css-in-js/3/input.css | CSS | foo {
color: red;
// Line comment
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/line-comment/css-in-js/4/input.css | CSS | foo {
color: red;
// Line comment
top: 0;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/line-comment/css-in-js/5/input.css | CSS | // Line comment
// Line comment
foo {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/line-comment/css-in-js/6/input.css | CSS | foo {
// Line comment
// Line comment
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/line-comment/css-in-js/7/input.css | CSS | // | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/line-comment/css-in-js/8/input.css | CSS | // | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/line-comment/css-in-js/9/input.css | CSS | // Only comment | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery-cssmodules/value/input.css | CSS | @value blue: #0c77f8;
@value red: #ff0000;
@value green: #aaf200;
.button {
color: blue;
display: inline-block;
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/document/input.css | CSS | @document domain(http://www.example.com/) {} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/extra-semi/input.css | CSS | @import "x.css";;
.color {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/font-face/input.css | CSS | @font-face {
invalid
}
@font-face {
invalid;
}
@font-face {
123
}
@font-face {
123;
}
@font-face foo {}
@font-face foo;
@font-face ;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/import/empty/input.css | CSS | @import ;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/import/indent/input.css | CSS | @import foo-bar;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/import/invalid-layer/input.css | CSS | @import "foo.css" layer();
@import "foo.css" layer("invalid");
@import "foo.css" layer(foo, bar); | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/import/invalid-supports/input.css | CSS | @import url("./test.css") supports(unknown);
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/import/no-semi/input.css | CSS | @import url('http://') :root {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/import/no-url/input.css | CSS | @import nourl(test);
@import 123;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/import/unknown/input.css | CSS | @import url("./test.css") unknown(default) unknown(display: flex) unknown;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/keyframes/custom-ident-1/input.css | CSS | @keyframes None {} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/keyframes/custom-ident-2/input.css | CSS | @keyframes inherit {} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/keyframes/custom-ident-3/input.css | CSS | @keyframes unset {} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/keyframes/custom-ident-4/input.css | CSS | @keyframes default {} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/keyframes/custom-ident/input.css | CSS | @keyframes initial {} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/keyframes/empty-name/input.css | CSS | @keyframes {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/keyframes/keyframe-broke-and-normal/input.css | CSS | @keyframes foo {
10 {
}
from {
color: red;
}
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/keyframes/keyframe-css-wide-keywords/input.css | CSS | @keyframes initial {}
@keyframes inherit {}
@keyframes unset {}
@keyframes none {}
@keyframes iNiTiAl {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/keyframes/keyframe-keyword/input.css | CSS | @keyframes foo {
form {}
}
@keyframes foo {
ot {}
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/keyframes/keyframe-number/input.css | CSS | @keyframes foo {
10 {
}
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/layer/block/input.css | CSS | @layer framework, override , foo {
.a {
color: red;
}
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/layer/empty/input.css | CSS | @layer ;
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/layer/string-name-block/input.css | CSS | @layer "framework" {
h1, h2 { color: maroon; background: white;}
@media (prefers-color-scheme: dark) {
h1, h2 { color: red; background: black; }
}
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/layer/string-name-statement/input.css | CSS | @layer "default"; | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/media/condition-1/input.css | CSS | @media (update: slow) and (hover: none) unknown (color: 1) {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/media/condition-and-or/input.css | CSS | @media screen and (min-width: 900px) or (min-width: 1200px) {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/media/condition/input.css | CSS | @media (update: slow) unknown (hover: none) {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/media/feature-name-1/input.css | CSS | @media (20px: 20px) {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/media/feature-name-2/input.css | CSS | @media ("string") {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/media/feature-name/input.css | CSS | @media ("min-width": 20px) {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_parser/tests/recovery/at-rule/media/feature-range-2/input.css | CSS | @media (400px > "width" > 700px) {}
| 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.