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/image-set/input.css | CSS | a {
background-image: image-set(url(foo@1x.png) 1x, url(foo@2x.png) 2x);
}
h1 {
background-image: image-set('foo@1x.png' 1x, "foo@2x.png" 2x);
}
.class {
background-image: image-set('foo@1x.png' 1x, "foo@2x.png" 2x);
}
.class {
border-image: image-set('foo@1x.png' 1x, "foo@2x.png" 2x);
}
.class {
... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/image-set/output.css | CSS | a {
background-image: -webkit-image-set(url(foo@1x.png) 1x, url(foo@2x.png) 2x);
background-image: image-set(url(foo@1x.png) 1x, url(foo@2x.png) 2x);
}
h1 {
background-image: -webkit-image-set(url("foo@1x.png") 1x, url("foo@2x.png") 2x);
background-image: image-set('foo@1x.png' 1x, "foo@2x.png" 2x);
}
.class {
... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/image-set/output.defaults-not-ie-11.css | CSS | a {
background-image: -webkit-image-set(url(foo@1x.png) 1x, url(foo@2x.png) 2x);
background-image: image-set(url(foo@1x.png) 1x, url(foo@2x.png) 2x);
}
h1 {
background-image: -webkit-image-set(url("foo@1x.png") 1x, url("foo@2x.png") 2x);
background-image: image-set('foo@1x.png' 1x, "foo@2x.png" 2x);
}
.class {
... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/important/input.css | CSS | .class {
box-shadow: 10px 5px 5px red !important;
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/important/output.css | CSS | .class {
-webkit-box-shadow: 10px 5px 5px red !important;
-moz-box-shadow: 10px 5px 5px red !important;
box-shadow: 10px 5px 5px red !important;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/important/output.defaults-not-ie-11.css | CSS | .class {
box-shadow: 10px 5px 5px red !important;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/isolate-override/input.css | CSS | .bible-quote {
direction: rtl;
unicode-bidi: isolate-override;
}
.bible-quote {
direction: rtl;
unicode-bidi: plaintext;
}
.bible-quote {
direction: rtl;
unicode-bidi: isolate;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/isolate-override/output.css | CSS | .bible-quote {
direction: rtl;
unicode-bidi: -webpack-isolate-override;
unicode-bidi: -moz-isolate-override;
unicode-bidi: isolate-override;
}
.bible-quote {
direction: rtl;
unicode-bidi: -webpack-plaintext;
unicode-bidi: -moz-plaintext;
unicode-bidi: plaintext;
}
.bible-quote {
direction: rtl;
unic... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/isolate-override/output.defaults-not-ie-11.css | CSS | .bible-quote {
direction: rtl;
unicode-bidi: isolate-override;
}
.bible-quote {
direction: rtl;
unicode-bidi: plaintext;
}
.bible-quote {
direction: rtl;
unicode-bidi: isolate;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/keyframes/input.css | CSS | @keyframes anim {
from {
top: calc(10% + 10px);
transform: rotate(10deg)
}
50% {
top: 0;
display: flex
}
to {
top: calc(10%);
transform: rotate(0)
}
}
@media screen {
@keyframes inside {}
}
@keyframes spaces { from { color: black } to { color... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/keyframes/output.css | CSS | @-webkit-keyframes anim {
from {
top: -webkit-calc(10% + 10px);
top: calc(10% + 10px);
-webkit-transform: rotate(10deg);
transform: rotate(10deg);
}
50% {
top: 0;
display: -webkit-box;
display: -webkit-flex;
display: flex;
}
to {
top: -webkit-calc(10%);
top: calc(10%);
... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/keyframes/output.defaults-not-ie-11.css | CSS | @keyframes anim {
from {
top: calc(10% + 10px);
transform: rotate(10deg);
}
50% {
top: 0;
display: flex;
}
to {
top: calc(10%);
transform: rotate(0);
}
}
@media screen {
@keyframes inside {}
}
@keyframes spaces {
from {
color: black;
}
to {
color: white;
}
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/margid-border-padding-logical/input.css | CSS | .class {
margin-inline-start: 20px;
}
.class {
margin-inline-end: 20px;
}
a {
margin-block-start: 1px;
margin-inline-start: 1px;
padding-inline-end: 1px;
}
.border {
border-block-end: 1px;
border-inline-end: 1px;
}
.class {
padding-block-start: 1px;
padding-block-end: 1px;
}
.cl... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/margid-border-padding-logical/output.css | CSS | .class {
-webkit-margin-start: 20px;
-moz-margin-start: 20px;
margin-inline-start: 20px;
}
.class {
-webkit-margin-end: 20px;
-moz-margin-end: 20px;
margin-inline-end: 20px;
}
a {
-webkit-margin-before: 1px;
margin-block-start: 1px;
-webkit-margin-start: 1px;
-moz-margin-start: 1px;
margin-inline-... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/margid-border-padding-logical/output.defaults-not-ie-11.css | CSS | .class {
margin-inline-start: 20px;
}
.class {
margin-inline-end: 20px;
}
a {
margin-block-start: 1px;
margin-inline-start: 1px;
padding-inline-end: 1px;
}
.border {
border-block-end: 1px;
border-inline-end: 1px;
}
.class {
padding-block-start: 1px;
padding-block-end: 1px;
}
.class {
margin-block-st... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/mask/input.css | CSS | .class {
mask: none;
}
.class {
mask-image: none;
}
.class {
mask-image: linear-gradient(#fff);
}
.class {
mask-mode: initial;
}
.class {
mask-clip: initial;
}
.class {
mask-size: initial;
}
.class {
mask-repeat: initial;
}
.class {
mask-origin: initial;
}
.class {
mask-posit... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/mask/output.css | CSS | .class {
-webkit-mask: none;
mask: none;
}
.class {
-webkit-mask-image: none;
mask-image: none;
}
.class {
-webkit-mask-image: -webkit-linear-gradient(#fff);
mask-image: -webkit-linear-gradient(#fff);
mask-image: -moz-linear-gradient(#fff);
mask-image: -o-linear-gradient(#fff);
mask-image: linear-grad... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/mask/output.defaults-not-ie-11.css | CSS | .class {
-webkit-mask: none;
mask: none;
}
.class {
-webkit-mask-image: none;
mask-image: none;
}
.class {
-webkit-mask-image: linear-gradient(#fff);
mask-image: linear-gradient(#fff);
}
.class {
mask-mode: initial;
}
.class {
-webkit-mask-clip: initial;
mask-clip: initial;
}
.class {
-webkit-mask-s... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/min-zoom/input.css | CSS | .class {
min-zoom: 0;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/min-zoom/output.css | CSS | .class {
min-zoom: 0;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/min-zoom/output.defaults-not-ie-11.css | CSS | .class {
min-zoom: 0;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/multicolumn/input.css | CSS | .a {
break-inside: auto;
break-before: auto;
break-after: auto;
}
.b {
break-inside: avoid;
}
.c {
break-inside: avoid-column;
}
.d {
break-inside: avoid-page;
}
.e {
break-inside: avoid-region;
}
.f {
break-inside: region;
}
.class {
break-before: page;
}
.class {
break-b... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/multicolumn/output.css | CSS | .a {
-webkit-column-break-inside: auto;
page-break-inside: auto;
break-inside: auto;
-webkit-column-break-before: auto;
page-break-before: auto;
break-before: auto;
-webkit-column-break-after: auto;
page-break-after: auto;
break-after: auto;
}
.b {
-webkit-column-break-inside: avoid;
page-break-in... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/multicolumn/output.defaults-not-ie-11.css | CSS | .a {
break-inside: auto;
break-before: auto;
break-after: auto;
}
.b {
break-inside: avoid;
}
.c {
break-inside: avoid-column;
}
.d {
break-inside: avoid-page;
}
.e {
break-inside: avoid-region;
}
.f {
break-inside: region;
}
.class {
break-before: page;
}
.class {
break-before: avoid;
}
.class {
... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/nested/input.css | CSS | @keyframes test {
0% {
color: red;
}
}
@supports (flex-wrap: wrap) {
@keyframes test {
0% {
color: red;
}
}
}
@supports (flex-wrap: wrap) {
@supports (flex-wrap: wrap) {
@keyframes test {
0% {
color: red;
}
... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/nested/output.css | CSS | @-webkit-keyframes test {
0% {
color: red;
}
}
@-moz-keyframes test {
0% {
color: red;
}
}
@-o-keyframes test {
0% {
color: red;
}
}
@keyframes test {
0% {
color: red;
}
}
@supports ((flex-wrap: wrap) or (-webkit-flex-wrap: wrap) or (-ms-flex-wrap: wrap)) {
@-webkit-keyframes test {
... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/nested/output.defaults-not-ie-11.css | CSS | @keyframes test {
0% {
color: red;
}
}
@supports (flex-wrap: wrap) {
@keyframes test {
0% {
color: red;
}
}
}
@supports (flex-wrap: wrap) {
@supports (flex-wrap: wrap) {
@keyframes test {
0% {
color: red;
}
}
}
}
.test {
&.class::placeholder {
color: red;
... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/object-fit/input.css | CSS | .class {
object-fit: contain;
}
.class {
object-position: 20px;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/object-fit/output.css | CSS | .class {
-o-object-fit: contain;
object-fit: contain;
}
.class {
-o-object-position: 20px;
object-position: 20px;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/object-fit/output.defaults-not-ie-11.css | CSS | .class {
object-fit: contain;
}
.class {
object-position: 20px;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/opacity/input.css | CSS | .class {
opacity: 0%;
opacity: 45%;
opacity: 0.45%;
opacity: 0.045%;
opacity: 0.00000000000045%;
opacity: 0.33%;
opacity: 0.3333333333%;
opacity: 99%;
opacity: 100%;
opacity: 120%;
opacity: 0.9999999999%;
}
.bar {
opacity: 0.3;
opacity: initial;
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/opacity/output.css | CSS | .class {
opacity: 0;
opacity: 0%;
opacity: 0.45;
opacity: 45%;
opacity: 0.0045;
opacity: 0.45%;
opacity: 0.00045;
opacity: 0.045%;
opacity: 0;
opacity: 0.00000000000045%;
opacity: 0.0033;
opacity: 0.33%;
opacity: 0.00333;
opacity: 0.3333333333%;
opacity: 0.99;
opacity: 99%;
opacity: 1;... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/opacity/output.defaults-not-ie-11.css | CSS | .class {
opacity: 0;
opacity: 0%;
opacity: 0.45;
opacity: 45%;
opacity: 0.0045;
opacity: 0.45%;
opacity: 0.00045;
opacity: 0.045%;
opacity: 0;
opacity: 0.00000000000045%;
opacity: 0.0033;
opacity: 0.33%;
opacity: 0.00333;
opacity: 0.3333333333%;
opacity: 0.99;
opacity: 99%;
opacity: 1;... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/overflow-wrap/input.css | CSS | .someClass{
overflow-wrap: break-word;
}
.anotherClass{
font-size:1rem;
overflow-wrap:break-word;
}
main {
overflow-wrap: normal;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/overflow-wrap/output.css | CSS | .someClass {
word-wrap: break-word;
overflow-wrap: break-word;
}
.anotherClass {
font-size: 1rem;
word-wrap: break-word;
overflow-wrap: break-word;
}
main {
word-wrap: normal;
overflow-wrap: normal;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/overflow-wrap/output.defaults-not-ie-11.css | CSS | .someClass {
overflow-wrap: break-word;
}
.anotherClass {
font-size: 1rem;
overflow-wrap: break-word;
}
main {
overflow-wrap: normal;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/overflow/input.css | CSS | html.single-overflow {
overflow: hidden;
}
html.double-overflow {
overflow: hidden auto;
}
html.double-overflow {
overflow: auto auto;
}
html.double-overflow {
overflow: hidden /* a comment */ auto;
}
html.double-overflow {
overflow: hidden auto;
}
html.double-overflow {
overflow: hidd... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/overflow/output.css | CSS | html.single-overflow {
overflow: hidden;
}
html.double-overflow {
overflow-x: hidden;
overflow-y: auto;
overflow: hidden auto;
}
html.double-overflow {
overflow: auto;
overflow: auto auto;
}
html.double-overflow {
overflow-x: hidden;
overflow-y: auto;
overflow: hidden auto;
}
html.double-overflow {
... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/overflow/output.defaults-not-ie-11.css | CSS | html.single-overflow {
overflow: hidden;
}
html.double-overflow {
overflow: hidden auto;
}
html.double-overflow {
overflow: auto auto;
}
html.double-overflow {
overflow: hidden auto;
}
html.double-overflow {
overflow: hidden auto;
}
html.double-overflow {
overflow: hidden auto;
}
.order-0 {
-webkit-overfl... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/overscroll-behavior/input.css | CSS | .none {
overscroll-behavior: none;
}
.contain {
overscroll-behavior: contain;
}
.auto {
overscroll-behavior: auto;
}
.inherit {
overscroll-behavior: inherit;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/overscroll-behavior/output.css | CSS | .none {
-ms-scroll-chaining: none;
overscroll-behavior: none;
}
.contain {
-ms-scroll-chaining: none;
overscroll-behavior: contain;
}
.auto {
-ms-scroll-chaining: chained;
overscroll-behavior: auto;
}
.inherit {
-ms-scroll-chaining: inherit;
overscroll-behavior: inherit;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/overscroll-behavior/output.defaults-not-ie-11.css | CSS | .none {
overscroll-behavior: none;
}
.contain {
overscroll-behavior: contain;
}
.auto {
overscroll-behavior: auto;
}
.inherit {
overscroll-behavior: inherit;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/page-break/input.css | CSS | a {
break-inside: avoid;
}
a {
break-after: avoid;
}
a {
break-before: page;
break-after: avoid-page;
}
a {
break-inside: avoid-column;
break-after: avoid-region;
}
a {
page-break-inside: avoid;
break-inside: avoid;
}
a {
break-inside: inherit;
break-before: inherit;
bre... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/page-break/output.css | CSS | a {
-webkit-column-break-inside: avoid;
page-break-inside: avoid;
break-inside: avoid;
}
a {
-webkit-column-break-after: avoid;
page-break-after: avoid;
break-after: avoid;
}
a {
page-break-before: always;
break-before: page;
break-after: avoid-page;
}
a {
break-inside: avoid-column;
break-after: ... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/page-break/output.defaults-not-ie-11.css | CSS | a {
break-inside: avoid;
}
a {
break-after: avoid;
}
a {
break-before: page;
break-after: avoid-page;
}
a {
break-inside: avoid-column;
break-after: avoid-region;
}
a {
page-break-inside: avoid;
break-inside: avoid;
}
a {
break-inside: inherit;
break-before: inherit;
break-after: inherit;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/perspective/input.css | CSS | .class {
perspective: 20px;
}
.class {
perspective-origin: 20px;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/perspective/output.css | CSS | .class {
-webkit-perspective: 20px;
-moz-perspective: 20px;
perspective: 20px;
}
.class {
-webkit-perspective-origin: 20px;
-moz-perspective-origin: 20px;
perspective-origin: 20px;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/perspective/output.defaults-not-ie-11.css | CSS | .class {
perspective: 20px;
}
.class {
perspective-origin: 20px;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/place/input.css | CSS | a {
place-content: space-between center;
place-items: center normal;
place-self: center;
}
A {
PLACE-CONTENT: space-between center;
PLACE-ITEMS: center normal;
PLACE-SELF: auto center;
}
b {
place-content: space-between;
place-items: center;
place-self: center;
}
c {
place-con... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/place/output.css | CSS | a {
-webkit-align-content: space-between;
-ms-flex-line-pack: justify;
align-content: space-between;
-webkit-box-pack: center;
-webkit-justify-content: center;
-moz-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
place-content: space-between center;
-webkit-box-align: center;
-we... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/place/output.defaults-not-ie-11.css | CSS | a {
place-content: space-between center;
place-items: center normal;
place-self: center;
}
A {
PLACE-CONTENT: space-between center;
PLACE-ITEMS: center normal;
PLACE-SELF: auto center;
}
b {
place-content: space-between;
place-items: center;
place-self: center;
}
c {
place-content: var(--first) cent... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/placeholder-shown/input.css | CSS | a:placeholder-shown {
color: red;
}
.SiteForm__input:not(:placeholder-shown) {
color: #828282;
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/placeholder-shown/output.css | CSS | a:-ms-input-placeholder {
color: red;
}
a:placeholder-shown {
color: red;
}
.SiteForm__input:not(:-ms-input-placeholder) {
color: #828282;
}
.SiteForm__input:not(:placeholder-shown) {
color: #828282;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/placeholder-shown/output.defaults-not-ie-11.css | CSS | a:placeholder-shown {
color: red;
}
.SiteForm__input:not(:placeholder-shown) {
color: #828282;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/placeholder/input.css | CSS | input::placeholder {
color: red;
}
input::placeholder, #fs-toggle:fullscreen {
color: red;
}
input::placeholder {
backdrop-filter: blur(2px);
}
input.appearance::placeholder {
appearance: none;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/placeholder/output.css | CSS | input::-webkit-input-placeholder {
color: red;
}
input:-moz-placeholder {
color: red;
}
input::-moz-placeholder {
color: red;
}
input:-ms-input-placeholder {
color: red;
}
input::-ms-input-placeholder {
color: red;
}
input::placeholder {
color: red;
}
input::-webkit-input-placeholder,
#fs-toggle:-webkit-fu... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/placeholder/output.defaults-not-ie-11.css | CSS | input::placeholder {
color: red;
}
input::placeholder,
#fs-toggle:-webkit-full-screen {
color: red;
}
input::placeholder,
#fs-toggle:fullscreen {
color: red;
}
input::placeholder {
-webkit-backdrop-filter: blur(2px);
backdrop-filter: blur(2px);
}
input.appearance::placeholder {
appearance: none;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/position/input.css | CSS | .class {
position: relative;
}
.class {
position: sticky;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/position/output.css | CSS | .class {
position: relative;
}
.class {
position: -webkit-sticky;
position: sticky;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/position/output.defaults-not-ie-11.css | CSS | .class {
position: relative;
}
.class {
position: sticky;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/prefixed/input.css | CSS | .class {
-webkit-appearance: auto;
appearance: auto;
}
.class-1 {
-webkit-appearance: unknown;
appearance: auto;
}
.class-2 {
appearance: none;
appearance: auto;
}
.class-3 {
appearance: none;
appearance: auto;
-webkit-appearance: auto;
}
.class-4 {
appearance: unknown;
a... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/prefixed/output.css | CSS | .class {
-webkit-appearance: auto;
-moz-appearance: auto;
-ms-appearance: auto;
appearance: auto;
}
.class-1 {
-webkit-appearance: unknown;
-moz-appearance: auto;
-ms-appearance: auto;
appearance: auto;
}
.class-2 {
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
appearanc... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/prefixed/output.defaults-not-ie-11.css | CSS | .class {
-webkit-appearance: auto;
appearance: auto;
}
.class-1 {
-webkit-appearance: unknown;
appearance: auto;
}
.class-2 {
appearance: none;
appearance: auto;
}
.class-3 {
appearance: none;
appearance: auto;
-webkit-appearance: auto;
}
.class-4 {
appearance: unknown;
appearance: auto;
-webkit... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/print-color-adjust/input.css | CSS | .a {
print-color-adjust: economy;
}
.b {
print-color-adjust: exact;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/print-color-adjust/output.css | CSS | .a {
color-adjust: economy;
-webkit-print-color-adjust: economy;
print-color-adjust: economy;
}
.b {
color-adjust: exact;
-webkit-print-color-adjust: exact;
print-color-adjust: exact;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/print-color-adjust/output.defaults-not-ie-11.css | CSS | .a {
-webkit-print-color-adjust: economy;
print-color-adjust: economy;
}
.b {
-webkit-print-color-adjust: exact;
print-color-adjust: exact;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/read-only/input.css | CSS | .d:read-only {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/read-only/output.css | CSS | .d:-moz-read-only {
color: red;
}
.d:read-only {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/read-only/output.defaults-not-ie-11.css | CSS | .d:read-only {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/read-write/input.css | CSS | .f:read-write {
color: red;
}
.f:read-write, .g:read-write {
color: red;
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/read-write/output.css | CSS | .f:-moz-read-write {
color: red;
}
.f:read-write {
color: red;
}
.f:-moz-read-write,
.g:-moz-read-write {
color: red;
}
.f:read-write,
.g:read-write {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/read-write/output.defaults-not-ie-11.css | CSS | .f:read-write {
color: red;
}
.f:read-write,
.g:read-write {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/recovery/input.css | CSS | main {
display: flex;
flex-direction: __styled-jsx-placeholder;
justify-content: space-between;
margin-bottom: var(--geist-gap-double);
}
div {
width: 100%;
max-width: calc(100% - __styled-jsx-placeholderpx - var(--geist-gap-double));
}
@media (max-width: __styled-jsx-placeholderpx) {
main... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/recovery/output.css | CSS | main {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: __styled-jsx-placeholder;
-ms-flex-direction: __styled-jsx-placeholder;
flex-direction: __styled-jsx-placeholder;
-webkit-box-pack: justify;
-webkit-justify-content: sp... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/recovery/output.defaults-not-ie-11.css | CSS | main {
display: flex;
flex-direction: __styled-jsx-placeholder;
justify-content: space-between;
margin-bottom: var(--geist-gap-double);
}
div {
width: 100%;
max-width: calc(100% - __styled-jsx-placeholderpx - var(--geist-gap-double));
}
@media (max-width: __styled-jsx-placeholderpx) {
main {
flex-dire... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/resolution/input.css | CSS | @import url('styles.css') screen and (min-resolution: 2dppx);
@import url("styles.css") supports(display: flex) screen and (max-width: 400px);
@import url("styles.css") supports(not (display: flex)) screen and (max-width: 400px);
@import url('styles.css') supports(display: flex) screen and (min-resolution: 2dppx);
@me... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/resolution/output.css | CSS | @import url('styles.css') screen and (min-resolution: 2dppx), screen and (-webkit-min-device-pixel-ratio: 2), screen and (min--moz-device-pixel-ratio: 2);
@import url("styles.css") supports((display: flex) or (display: -webkit-box) or (display: -webkit-flex) or (display: -moz-box) or (display: -ms-flexbox)) screen and ... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/resolution/output.defaults-not-ie-11.css | CSS | @import url('styles.css') screen and (min-resolution: 2dppx);
@import url("styles.css") supports(display: flex) screen and (max-width: 400px);
@import url("styles.css") supports(not (display: flex)) screen and (max-width: 400px);
@import url('styles.css') supports(display: flex) screen and (min-resolution: 2dppx);
@med... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/selection/input.css | CSS | .c::selection {
color: red;
}
::selection {
color: red;
}
::SeLeCtIoN {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/selection/output.css | CSS | .c::-moz-selection {
color: red;
}
.c::selection {
color: red;
}
::-moz-selection {
color: red;
}
::selection {
color: red;
}
::SeLeCtIoN {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/selection/output.defaults-not-ie-11.css | CSS | .c::selection {
color: red;
}
::selection {
color: red;
}
::SeLeCtIoN {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/selector-list-2/input.css | CSS | div.jsx-5a206f122d1cb32e > span {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/selector-list-2/output.css | CSS | div.jsx-5a206f122d1cb32e > span {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/selector-list-2/output.defaults-not-ie-11.css | CSS | div.jsx-5a206f122d1cb32e > span {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/selector-list/input.css | CSS | .container.jsx-c7c3a8e231c9215a > * {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/selector-list/output.css | CSS | .container.jsx-c7c3a8e231c9215a > * {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/selector-list/output.defaults-not-ie-11.css | CSS | .container.jsx-c7c3a8e231c9215a > * {
color: red;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/shapes/input.css | CSS | .class {
shape-margin: 20px
}
.class {
shape-outside: url("foo.png");
}
.class {
shape-image-threshold: initial;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/shapes/output.css | CSS | .class {
-webkit-shape-margin: 20px;
shape-margin: 20px;
}
.class {
-webkit-shape-outside: url("foo.png");
shape-outside: url("foo.png");
}
.class {
-webkit-shape-image-threshold: initial;
shape-image-threshold: initial;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/shapes/output.defaults-not-ie-11.css | CSS | .class {
shape-margin: 20px;
}
.class {
shape-outside: url("foo.png");
}
.class {
shape-image-threshold: initial;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/snappoints/input.css | CSS | .class {
scroll-snap-type: block;
}
.class {
scroll-snap-coordinate: none;
}
.class {
scroll-snap-destination: 400px 600px;
}
.class {
scroll-snap-points-x: none;
}
.class {
scroll-snap-points-y: none;
} | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/snappoints/output.css | CSS | .class {
-webkit-scroll-snap-type: block;
-ms-scroll-snap-type: block;
scroll-snap-type: block;
}
.class {
-webkit-scroll-snap-coordinate: none;
-ms-scroll-snap-coordinate: none;
scroll-snap-coordinate: none;
}
.class {
-webkit-scroll-snap-destination: 400px 600px;
-ms-scroll-snap-destination: 400px 600... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/snappoints/output.defaults-not-ie-11.css | CSS | .class {
scroll-snap-type: block;
}
.class {
scroll-snap-coordinate: none;
}
.class {
scroll-snap-destination: 400px 600px;
}
.class {
scroll-snap-points-x: none;
}
.class {
scroll-snap-points-y: none;
}
| willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/style-block/input.css | CSS | .class {
&.foo {
appearance: auto;
}
@media all {
appearance: auto;
}
}
@media (min-width: 50em) {
.foo {
appearance: auto;
}
@supports (flex-wrap: wrap) {
.foo {
appearance: auto;
}
}
}
@supports (flex-wrap: wrap) {
.foo {
... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/style-block/output.css | CSS | .class {
&.foo {
-webkit-appearance: auto;
-moz-appearance: auto;
-ms-appearance: auto;
appearance: auto;
}
@media all {
-webkit-appearance: auto;
-moz-appearance: auto;
-ms-appearance: auto;
appearance: auto;
}
}
@media (min-width: 50em) {
.foo {
-webkit-appearance: auto;
... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/style-block/output.defaults-not-ie-11.css | CSS | .class {
&.foo {
appearance: auto;
}
@media all {
appearance: auto;
}
}
@media (min-width: 50em) {
.foo {
appearance: auto;
}
@supports (flex-wrap: wrap) {
.foo {
appearance: auto;
}
}
}
@supports (flex-wrap: wrap) {
.foo {
appearance: auto;
}
@media (min-width: 50em)... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/supports/input.css | CSS | @supports (display: flex) {
div {
display: flex;
}
}
@supports not (display: flex) {
a {
color: #000;
}
}
@supports not (not (display: flex)) {
a {
color: #000;
}
}
@supports (display: flex) or (cursor: grab) {
div {
display: flex;
}
}
@supports (displ... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/supports/output.css | CSS | @supports ((display: flex) or (display: -webkit-box) or (display: -webkit-flex) or (display: -moz-box) or (display: -ms-flexbox)) {
div {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
}
}
@supports not ((display: flex) or (display: -webkit-b... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/supports/output.defaults-not-ie-11.css | CSS | @supports (display: flex) {
div {
display: flex;
}
}
@supports not (display: flex) {
a {
color: #000;
}
}
@supports not (not (display: flex)) {
a {
color: #000;
}
}
@supports (display: flex) or (cursor: grab) {
div {
display: flex;
}
}
@supports (display: flex) and (cursor: grab) {
div... | willcrichton/ilc-swc | 1 | Rust | willcrichton | Will Crichton | Brown University | |
crates/swc_css_prefixer/tests/fixture/tab-size/input.css | CSS | .class {
tab-size: 2;
}
| 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.