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_prefixer/tests/fixture/border-radius/output.defaults-not-ie-11.css | CSS | a {
border-radius: 5px;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/box-decoration-break/input.css | CSS | .class {
box-decoration-break: slice;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/box-decoration-break/output.css | CSS | .class {
-webkit-box-decoration-break: slice;
box-decoration-break: slice;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/box-decoration-break/output.defaults-not-ie-11.css | CSS | .class {
-webkit-box-decoration-break: slice;
box-decoration-break: slice;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/box-shadow/input.css | CSS | .class {
box-shadow: 10px 5px 5px red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/box-shadow/output.css | CSS | .class {
-webkit-box-shadow: 10px 5px 5px red;
-moz-box-shadow: 10px 5px 5px red;
box-shadow: 10px 5px 5px red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/box-shadow/output.defaults-not-ie-11.css | CSS | .class {
box-shadow: 10px 5px 5px red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/box-sizing/input.css | CSS | .class {
box-sizing: border-box;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/box-sizing/output.css | CSS | .class {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/box-sizing/output.defaults-not-ie-11.css | CSS | .class {
box-sizing: border-box;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/calc/input.css | CSS | .class {
width: calc(20px + 40px);
}
.class {
margin: calc(5% + 5px) calc(10% + 10px);
}
div {
background-size: calc(20px);
}
.basic {
opacity: calc(1 + calc(2 * 2));
}
.mixed-casing {
width: calc(1 + cAlC(2 * 2));
}
.multi-line {
width: calc(1 +
calc(2 * 2)
);
}
.multiple-nest... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/calc/output.css | CSS | .class {
width: -webkit-calc(20px + 40px);
width: -moz-calc(20px + 40px);
width: calc(20px + 40px);
}
.class {
margin: -webkit-calc(5% + 5px) -webkit-calc(10% + 10px);
margin: -moz-calc(5% + 5px) -moz-calc(10% + 10px);
margin: calc(5% + 5px) calc(10% + 10px);
}
div {
-webkit-background-size: -webkit-calc(... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/calc/output.defaults-not-ie-11.css | CSS | .class {
width: calc(20px + 40px);
}
.class {
margin: calc(5% + 5px) calc(10% + 10px);
}
div {
background-size: calc(20px);
}
.basic {
opacity: calc(1 + calc(2 * 2));
}
.mixed-casing {
width: calc(1 + cAlC(2 * 2));
}
.multi-line {
width: calc(1 + calc(2 * 2));
}
.multiple-nested {
width: calc(2 + calc(2 *... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/case-insensivity/input.css | CSS | a {
APPEARANCE: NONE;
}
b {
APPEARANCE: AUTO;
}
c {
-WEBKIT-APPEARANCE: NONE;
APPEARANCE: NONE;
}
d {
-webkit-appearance: NONE;
APPEARANCE: NONE;
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/case-insensivity/output.css | CSS | a {
APPEARANCE: NONE;
}
b {
APPEARANCE: AUTO;
}
c {
-WEBKIT-APPEARANCE: NONE;
APPEARANCE: NONE;
}
d {
-webkit-appearance: NONE;
APPEARANCE: NONE;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/case-insensivity/output.defaults-not-ie-11.css | CSS | a {
APPEARANCE: NONE;
}
b {
APPEARANCE: AUTO;
}
c {
-WEBKIT-APPEARANCE: NONE;
APPEARANCE: NONE;
}
d {
-webkit-appearance: NONE;
APPEARANCE: NONE;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/check-down/input.css | CSS | * {
transition: all 1s;
-o-transition: all 1s
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/check-down/output.css | CSS | * {
-webkit-transition: all 1s;
-moz-transition: all 1s;
transition: all 1s;
-o-transition: all 1s;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/check-down/output.defaults-not-ie-11.css | CSS | * {
transition: all 1s;
-o-transition: all 1s;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/clamp/input.css | CSS | a {
width: clamp(10px, 64px, 80px);
}
a {
width: clamp(calc(100% - 10px), min(10px, 100%), max(40px, 4em));
}
a {
width: clamp(10%, 2px, 4rem);
}
a {
width: clamp(10%, 2px, 4rem);
height: calc(10px + 100%);
}
a {
width: clamp(10%, 2.5px, 5.1px);
}
a {
width: clamp(10%, 2.5px, 5px);
}
a... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/clamp/output.css | CSS | a {
width: max(10px, min(64px, 80px));
width: clamp(10px, 64px, 80px);
}
a {
width: max(-webkit-calc(100% - 10px), min(min(10px, 100%), max(40px, 4em)));
width: clamp(-moz-calc(100% - 10px), min(10px, 100%), max(40px, 4em));
width: clamp(calc(100% - 10px), min(10px, 100%), max(40px, 4em));
}
a {
width: max(... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/clamp/output.defaults-not-ie-11.css | CSS | a {
width: clamp(10px, 64px, 80px);
}
a {
width: clamp(calc(100% - 10px), min(10px, 100%), max(40px, 4em));
}
a {
width: clamp(10%, 2px, 4rem);
}
a {
width: clamp(10%, 2px, 4rem);
height: calc(10px + 100%);
}
a {
width: clamp(10%, 2.5px, 5.1px);
}
a {
width: clamp(10%, 2.5px, 5px);
}
a {
width: clamp(ca... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/clip-path/input.css | CSS | .class {
clip-path:none;
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/clip-path/output.css | CSS | .class {
-webkit-clip-path: none;
clip-path: none;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/clip-path/output.defaults-not-ie-11.css | CSS | .class {
clip-path: none;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/color-adjust/input.css | CSS | .a {
color-adjust: economy;
}
.b {
color-adjust: exact;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/color-adjust/output.css | CSS | .a {
-webkit-print-color-adjust: economy;
color-adjust: economy;
}
.b {
-webkit-print-color-adjust: exact;
color-adjust: exact;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/color-adjust/output.defaults-not-ie-11.css | CSS | .a {
-webkit-print-color-adjust: economy;
color-adjust: economy;
}
.b {
-webkit-print-color-adjust: exact;
color-adjust: exact;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/color/input.css | CSS | .class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/color/output.css | CSS | .class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/color/output.defaults-not-ie-11.css | CSS | .class {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/columns/input.css | CSS | .class {
columns: auto;
}
.class {
column-count: auto;
}
.class {
column-fill: auto;
}
.class {
column-gap: auto;
}
.class {
column-rule: auto;
}
.class {
column-rule-color: auto;
}
.class {
column-rule-style: auto;
}
.class {
column-rule-width: auto;
}
.class {
column-span: ... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/columns/output.css | CSS | .class {
-webkit-columns: auto;
-moz-columns: auto;
columns: auto;
}
.class {
-webkit-column-count: auto;
-moz-column-count: auto;
column-count: auto;
}
.class {
-webkit-column-fill: auto;
-moz-column-fill: auto;
column-fill: auto;
}
.class {
-webkit-column-gap: auto;
-moz-column-gap: auto;
colu... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/columns/output.defaults-not-ie-11.css | CSS | .class {
columns: auto;
}
.class {
column-count: auto;
}
.class {
column-fill: auto;
}
.class {
column-gap: auto;
}
.class {
column-rule: auto;
}
.class {
column-rule-color: auto;
}
.class {
column-rule-style: auto;
}
.class {
column-rule-width: auto;
}
.class {
column-span: auto;
}
.class {
column-... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/cross-fade/input.css | CSS | a {
background-image: cross-fade(20% url(foo.png), url(bar.png));
}
b {
background-image: cross-fade(url(foo.png), url(bar.png));
}
h1 {
background-image: cross-fade(10.823% url(foo.png), url(bar.png));
}
h2 {
background-image: cross-fade(0.59 url(foo.png), url(bar.png));
}
h3 {
background-image... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/cross-fade/output.css | CSS | a {
background-image: -webkit-cross-fade(url(foo.png), url(bar.png), 0.2);
background-image: cross-fade(20% url(foo.png), url(bar.png));
}
b {
background-image: -webkit-cross-fade(url(foo.png), url(bar.png), 0.5);
background-image: cross-fade(url(foo.png), url(bar.png));
}
h1 {
background-image: -webkit-cross... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/cross-fade/output.defaults-not-ie-11.css | CSS | a {
background-image: -webkit-cross-fade(url(foo.png), url(bar.png), 0.2);
background-image: cross-fade(20% url(foo.png), url(bar.png));
}
b {
background-image: -webkit-cross-fade(url(foo.png), url(bar.png), 0.5);
background-image: cross-fade(url(foo.png), url(bar.png));
}
h1 {
background-image: -webkit-cross... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/css-regions/input.css | CSS | .class {
flow-into: table-content;
}
.class {
flow-from: none;
}
.class {
region-fragment: break;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/css-regions/output.css | CSS | .class {
-webkit-flow-into: table-content;
-ms-flow-into: table-content;
flow-into: table-content;
}
.class {
-webkit-flow-from: none;
-ms-flow-from: none;
flow-from: none;
}
.class {
-webkit-region-fragment: break;
-ms-region-fragment: break;
region-fragment: break;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/css-regions/output.defaults-not-ie-11.css | CSS | .class {
flow-into: table-content;
}
.class {
flow-from: none;
}
.class {
region-fragment: break;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/cursor/input.css | CSS | .class {
cursor: none;
}
.class {
cursor: grab;
}
.class {
cursor: url(cursor_1.png) 4 12, grab;
}
.class {
cursor: image-set(url(foo.jpg) 2x), pointer;
}
.class {
cursor: image-set(url(foo.jpg) 2x), grab;
}
.class {
cursor: url(cursor_1.svg) 4 5, url(cursor_2.svg), image-set(url(foo.jpg) 2... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/cursor/output.css | CSS | .class {
cursor: none;
}
.class {
cursor: -webkit-grab;
cursor: -moz-grab;
cursor: grab;
}
.class {
cursor: url(cursor_1.png) 4 12, -webkit-grab;
cursor: url(cursor_1.png) 4 12, -moz-grab;
cursor: url(cursor_1.png) 4 12, grab;
}
.class {
cursor: -webkit-image-set(url(foo.jpg) 2x), pointer;
cursor: ima... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/cursor/output.defaults-not-ie-11.css | CSS | .class {
cursor: none;
}
.class {
cursor: grab;
}
.class {
cursor: url(cursor_1.png) 4 12, grab;
}
.class {
cursor: -webkit-image-set(url(foo.jpg) 2x), pointer;
cursor: image-set(url(foo.jpg) 2x), pointer;
}
.class {
cursor: -webkit-image-set(url(foo.jpg) 2x), grab;
cursor: image-set(url(foo.jpg) 2x), gra... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/display/input.css | CSS | .class {
display: block;
}
.class {
display: flex !important;
}
.class {
display: inline-flex;
}
.class {
display: flex;
}
:fullscreen a {
display: flex;
}
.block-flow {
display: block flow;
display: flow block;
}
.block-flow-root {
display: block flow-root;
}
.inline-flow {
d... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/display/output.css | CSS | .class {
display: block;
}
.class {
display: -webkit-box !important;
display: -webkit-flex !important;
display: -moz-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
.class {
display: -webkit-inline-box;
display: -webkit-inline-flex;
display: -moz-inline-box;
display: -ms... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/display/output.defaults-not-ie-11.css | CSS | .class {
display: block;
}
.class {
display: flex !important;
}
.class {
display: inline-flex;
}
.class {
display: flex;
}
:-webkit-full-screen a {
display: flex;
}
:fullscreen a {
display: flex;
}
.block-flow {
display: block;
display: block flow;
display: block;
display: flow block;
}
.block-flow-... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/duplicate-at-rule-1/input.css | CSS | @font-face {}
@-webkit-keyframes anim {}
@font-face {}
@keyframes anim {}
@font-face {}
@font-face {}
@-webkit-keyframes anim {
0% {
color: red
}
}
@font-face {}
@keyframes anim {
0% {
color: red
}
}
@font-face {} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/duplicate-at-rule-1/output.css | CSS | @font-face{}
@-webkit-keyframes anim {}
@font-face{}
@-moz-keyframes anim {}
@-o-keyframes anim {}
@keyframes anim {}
@font-face{}
@font-face{}
@-webkit-keyframes anim {
0% {
color: red;
}
}
@font-face{}
@-moz-keyframes anim {
0% {
color: red;
}
}
@-o-keyframes anim {
0% {
color: red;
}
}
@keyfr... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/duplicate-at-rule-1/output.defaults-not-ie-11.css | CSS | @font-face{}
@-webkit-keyframes anim {}
@font-face{}
@keyframes anim {}
@font-face{}
@font-face{}
@-webkit-keyframes anim {
0% {
color: red;
}
}
@font-face{}
@keyframes anim {
0% {
color: red;
}
}
@font-face{}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/duplicate-at-rule-2/input.css | CSS | @-webkit-keyframes anim {}
@keyframes anim {} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/duplicate-at-rule-2/output.css | CSS | @-webkit-keyframes anim {}
@-moz-keyframes anim {}
@-o-keyframes anim {}
@keyframes anim {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/duplicate-at-rule-2/output.defaults-not-ie-11.css | CSS | @-webkit-keyframes anim {}
@keyframes anim {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/duplicate-at-rule-3/input.css | CSS | @keyframes anim {}
@-webkit-keyframes anim {} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/duplicate-at-rule-3/output.css | CSS | @-webkit-keyframes anim {}
@-moz-keyframes anim {}
@-o-keyframes anim {}
@keyframes anim {}
@-webkit-keyframes anim {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/duplicate-at-rule-3/output.defaults-not-ie-11.css | CSS | @keyframes anim {}
@-webkit-keyframes anim {}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/duplicate-at-rule/input.css | CSS | @-webkit-keyframes anim {}
@keyframes anim {}
@-webkit-keyframes anim {
0% {
color: red
}
}
@keyframes anim {
0% {
color: red
}
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/duplicate-at-rule/output.css | CSS | @-webkit-keyframes anim {}
@-moz-keyframes anim {}
@-o-keyframes anim {}
@keyframes anim {}
@-webkit-keyframes anim {
0% {
color: red;
}
}
@-moz-keyframes anim {
0% {
color: red;
}
}
@-o-keyframes anim {
0% {
color: red;
}
}
@keyframes anim {
0% {
color: red;
}
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/duplicate-at-rule/output.defaults-not-ie-11.css | CSS | @-webkit-keyframes anim {}
@keyframes anim {}
@-webkit-keyframes anim {
0% {
color: red;
}
}
@keyframes anim {
0% {
color: red;
}
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/element/input.css | CSS | div {
background: element(#id);
}
div {
background: url(image.jpg), element(#id);
}
div {
background: image-set(url("small-balloons.jpg") 1x, url("large-balloons.jpg") 2x), element(#id);
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/element/output.css | CSS | div {
background: -moz-element(#id);
background: element(#id);
}
div {
background: url(image.jpg), -moz-element(#id);
background: url(image.jpg), element(#id);
}
div {
background: -webkit-image-set(url("small-balloons.jpg") 1x, url("large-balloons.jpg") 2x), element(#id);
background: image-set(url("small-ba... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/element/output.defaults-not-ie-11.css | CSS | div {
background: -moz-element(#id);
background: element(#id);
}
div {
background: url(image.jpg), -moz-element(#id);
background: url(image.jpg), element(#id);
}
div {
background: -webkit-image-set(url("small-balloons.jpg") 1x, url("large-balloons.jpg") 2x), element(#id);
background: image-set(url("small-ba... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/error-recovery/input.css | CSS | /* This behavior is wrong, but it's what `stylis@3` does. */
.class {
__styled-jsx-placeholder__1
animation: slide 3s ease infinite;
}
.class {
animation: slide 3s ease infinite;
__styled-jsx-placeholder__1
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/error-recovery/output.css | CSS | .class {
__styled-jsx-placeholder__1
animation: slide 3s ease infinite;}
.class {
-webkit-animation: slide 3s ease infinite;
-moz-animation: slide 3s ease infinite;
-o-animation: slide 3s ease infinite;
animation: slide 3s ease infinite;
__styled-jsx-placeholder__1
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/error-recovery/output.defaults-not-ie-11.css | CSS | .class {
__styled-jsx-placeholder__1
animation: slide 3s ease infinite;}
.class {
animation: slide 3s ease infinite;
__styled-jsx-placeholder__1
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/file-selector-button/input.css | CSS | input[type=file]::file-selector-button {
border: 2px solid #6c5ce7;
}
input[type=file]::file-selector-button:hover {
border: 2px solid #00cec9;
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/file-selector-button/output.css | CSS | input[type=file]::-webkit-file-upload-button {
border: 2px solid #6c5ce7;
}
input[type=file]::-ms-browse {
border: 2px solid #6c5ce7;
}
input[type=file]::file-selector-button {
border: 2px solid #6c5ce7;
}
input[type=file]::-webkit-file-upload-button:hover {
border: 2px solid #00cec9;
}
input[type=file]::-ms-br... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/file-selector-button/output.defaults-not-ie-11.css | CSS | input[type=file]::file-selector-button {
border: 2px solid #6c5ce7;
}
input[type=file]::file-selector-button:hover {
border: 2px solid #00cec9;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/filter/input.css | CSS | .class {
filter: grayscale(100%);
fill:red;
}
a {
filter: blur(10px);
transition: filter 2s;
}
div {
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
}
b {
filter: alpha(opacity=100);
}
em {
filter: Alpha(opacity=100);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/filter/output.css | CSS | .class {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
fill: red;
}
a {
-webkit-filter: blur(10px);
filter: blur(10px);
-webkit-transition: -webkit-filter 2s;
-moz-transition: filter 2s;
-o-transition: filter 2s;
transition: -webkit-filter 2s;
transition: filter 2s;
}
div {
filter: pro... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/filter/output.defaults-not-ie-11.css | CSS | .class {
filter: grayscale(100%);
fill: red;
}
a {
filter: blur(10px);
transition: filter 2s;
}
div {
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
}
b {
filter: alpha(opacity=100);
}
em {
filter: Alpha(opacity=100);
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/flex/input.css | CSS | a {
-js-display: flex;
display: flex;
flex-flow: row;
order: 0;
flex: 0 1 2;
transition: flex 200ms;
}
.inline {
display: inline-flex;
align-self: auto;
align-content: stretch;
flex: auto;
}
.a {
display: flex;
flex-direction: row;
justify-content: flex-start;
a... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/flex/output.css | CSS | a {
-js-display: flex;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-flow: row;
-moz-box-orient: horizontal;
-moz-box-direction: normal;
-ms-flex-flow: row;
flex-f... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/flex/output.defaults-not-ie-11.css | CSS | a {
-js-display: flex;
display: flex;
flex-flow: row;
order: 0;
flex: 0 1 2;
transition: flex 200ms;
}
.inline {
display: inline-flex;
align-self: auto;
align-content: stretch;
flex: auto;
}
.a {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: flex-start;
flex... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/font-face-format/input.css | CSS | @font-face {
src: format(woff);
}
@font-face {
src: url(a) format(woff), url(b) format(svg);
}
@font-face {
src: format(woff), format(truetype), format(opentype), format(woff2), format(embedded-opentype), format(collection), format(svg);
}
@Font-face {
src: FORMAT(WOFF)
}
@font-face {
src: forma... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/font-face-format/output.css | CSS | @font-face{
src: format("woff");
src: format(woff);
}
@font-face{
src: url(a) format("woff"), url(b) format("svg");
src: url(a) format(woff), url(b) format(svg);
}
@font-face{
src: format("woff"), format("truetype"), format("opentype"), format("woff2"), format("embedded-opentype"), format("collection"), forma... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/font-face-format/output.defaults-not-ie-11.css | CSS | @font-face{
src: format("woff");
src: format(woff);
}
@font-face{
src: url(a) format("woff"), url(b) format("svg");
src: url(a) format(woff), url(b) format(svg);
}
@font-face{
src: format("woff"), format("truetype"), format("opentype"), format("woff2"), format("embedded-opentype"), format("collection"), forma... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/font-feature/input.css | CSS | .class {
font-feature-settings: initial;
}
.class {
font-variant-ligatures: initial;
}
.class {
font-language-override: initial;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/font-feature/output.css | CSS | .class {
-webkit-font-feature-settings: initial;
-moz-font-feature-settings: initial;
font-feature-settings: initial;
}
.class {
-webkit-font-variant-ligatures: initial;
-moz-font-variant-ligatures: initial;
font-variant-ligatures: initial;
}
.class {
-webkit-font-language-override: initial;
-moz-font-l... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/font-feature/output.defaults-not-ie-11.css | CSS | .class {
font-feature-settings: initial;
}
.class {
font-variant-ligatures: initial;
}
.class {
font-language-override: initial;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/font-kerning/input.css | CSS | .class {
font-kerning: none;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/font-kerning/output.css | CSS | .class {
-webkit-font-kerning: none;
font-kerning: none;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/font-kerning/output.defaults-not-ie-11.css | CSS | .class {
font-kerning: none;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/forced-color-adjust/input.css | CSS | .class {
forced-color-adjust: auto;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/forced-color-adjust/output.css | CSS | .class {
-ms-high-contrast-adjust: auto;
forced-color-adjust: auto;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/forced-color-adjust/output.defaults-not-ie-11.css | CSS | .class {
forced-color-adjust: auto;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/fullscreen/input.css | CSS | :fullscreen a {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/fullscreen/output.css | CSS | :-webkit-full-screen a {
color: red;
}
:-moz-full-screen a {
color: red;
}
:-ms-fullscreen a {
color: red;
}
:fullscreen a {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/fullscreen/output.defaults-not-ie-11.css | CSS | :-webkit-full-screen a {
color: red;
}
:fullscreen a {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/gradient/input.css | CSS | a {
background: linear-gradient(350.5deg, white, black), linear-gradient(-130deg, black, white), linear-gradient(45deg, black, white);
}
b {
background-image: linear-gradient(rgba(0,0,0,1), white), linear-gradient(white, black);
}
strong {
background: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.8... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/gradient/output.css | CSS | a {
background: -webkit-linear-gradient(99.5deg, white, black), -webkit-linear-gradient(220deg, black, white), -webkit-linear-gradient(45deg, black, white);
background: -moz-linear-gradient(99.5deg, white, black), -moz-linear-gradient(220deg, black, white), -moz-linear-gradient(45deg, black, white);
background: -... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/gradient/output.defaults-not-ie-11.css | CSS | a {
background: linear-gradient(350.5deg, white, black), linear-gradient(-130deg, black, white), linear-gradient(45deg, black, white);
}
b {
background-image: linear-gradient(rgba(0, 0, 0, 1), white), linear-gradient(white, black);
}
strong {
background: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.8) 20p... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/grouping-rule/input.css | CSS | .grid {
display: grid;
}
.a,
.b,
.c::selection,
.d:read-only,
.e::placeholder {
color: yellow;
}
::selection {
color: red;
}
:read-only {
color: black;
}
.f:read-write, .g:read-write {
background: #fff;
}
.example:any-link:read-only {
color: red;
}
.element1:focus,
.element1:read-only {
... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/grouping-rule/output.css | CSS | .grid {
display: grid;
}
.a,
.b,
.c::selection,
.d:read-only,
.e::-webkit-input-placeholder {
color: yellow;
}
.a,
.b,
.c::-moz-selection,
.d:-moz-read-only,
.e:-moz-placeholder {
color: yellow;
}
.a,
.b,
.c::-moz-selection,
.d:-moz-read-only,
.e::-moz-placeholder {
color: yellow;
}
.a,
.b,
.c::se... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/grouping-rule/output.defaults-not-ie-11.css | CSS | .grid {
display: grid;
}
.a,
.b,
.c::selection,
.d:read-only,
.e::placeholder {
color: yellow;
}
::selection {
color: red;
}
:read-only {
color: black;
}
.f:read-write,
.g:read-write {
background: #fff;
}
.example:any-link:read-only {
color: red;
}
.element1:focus,
.element1:read-only {
background-c... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/hyphens/input.css | CSS | .class {
hyphens: auto;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/hyphens/output.css | CSS | .class {
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/hyphens/output.defaults-not-ie-11.css | CSS | .class {
-webkit-hyphens: auto;
hyphens: auto;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/image-rendering/input.css | CSS | img {
image-rendering: crisp-edges;
}
img.other {
image-rendering: pixelated;
}
img.already {
-ms-interpolation-mode: nearest-neighbor;
display: block;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/image-rendering/output.css | CSS | img {
image-rendering: -webkit-optimize-contrast;
image-rendering: -moz-crisp-edges;
image-rendering: crisp-edges;
}
img.other {
-ms-interpolation-mode: nearest-neighbor;
image-rendering: -webkit-optimize-contrast;
image-rendering: -moz-crisp-edges;
image-rendering: -o-pixelated;
image-rendering: pixela... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/image-rendering/output.defaults-not-ie-11.css | CSS | img {
image-rendering: crisp-edges;
}
img.other {
image-rendering: pixelated;
}
img.already {
-ms-interpolation-mode: nearest-neighbor;
display: block;
image-rendering: crisp-edges;
image-rendering: pixelated;
}
| 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.