Initial commit

This commit is contained in:
Patrick Marsceill
2017-03-09 13:16:08 -05:00
commit b7b0d0d7bf
4147 changed files with 401224 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
a {
transition: transform 1s;
transform: rotateX(45deg)
}
b {
transform: translateX(45deg)
}
@keyframes anim {
from {
transform: rotate(90deg);
}
}

View File

@@ -0,0 +1,3 @@
a {
border-image: linear-gradient(black, white) 20% fill stretch stretch;
}

View File

@@ -0,0 +1,5 @@
a {
border-radius: 5px;
border-top-left-radius: 3px;
border-bottom-right-radius: 3px;
}

View File

@@ -0,0 +1,6 @@
a {
flex-direction: row;
transition: all 1s
}
b { transition: all 1s }

View File

@@ -0,0 +1,4 @@
* {
transition: all 1s;
-o-transition: all 1s
}

View File

@@ -0,0 +1,8 @@
a {
/* transition */
transition: all 1s;
height: calc(/* comment before */100% - /* comment inside */ 10px/* comment after */);
}
/* placeholder */
::placeholder { }

View File

@@ -0,0 +1,3 @@
a {
-evil-up: calc(10px + 1);
}

View File

@@ -0,0 +1,29 @@
a {
-webkit-border-radius: 4px;
border-radius: 4px;
transition: transform 1s;
}
b {
/* autoprefixer: off */
-webkit-border-radius: 4px;
border-radius: 4px;
transition: transform 1s;
}
@support (transition: 1s) {
/* autoprefixer: off */
:fullscreen {
-webkit-border-radius: 4px;
border-radius: 4px;
transition: transform 1s;
}
::placeholder {
/*autoprefixer: on*/
-webkit-border-radius: 4px;
border-radius: 4px;
transition: transform 1s;
}
}

View File

@@ -0,0 +1,4 @@
a {
flex-basis: 8.33333%;
flex-basis: calc(100% / 12 * 1)
}

View File

@@ -0,0 +1,3 @@
:fullscreen a {
transition: transform 1s
}

View File

@@ -0,0 +1,16 @@
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);
}

View File

@@ -0,0 +1,3 @@
.a {
flex-grow: 0;
}

View File

@@ -0,0 +1,54 @@
a {
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 {
flex-direction: row;
justify-content: flex-start;
align-items: flex-start;
flex-wrap: nowrap;
align-content: flex-start;
align-self: flex-start;
flex: none;
}
.b {
flex-direction: row-reverse;
justify-content: flex-end;
align-items: flex-end;
flex-wrap: wrap;
align-content: flex-end;
align-self: flex-end;
flex-shrink: 1;
}
.c {
flex-direction: column;
justify-content: center;
align-items: center;
flex-wrap: reverse-wrap;
align-content: center;
align-self: center;
flex-basis: auto;
}
.e {
flex-direction: column-reverse;
justify-content: space-between;
align-items: baseline;
align-content: space-between;
align-self: baseline;
}
.f {
justify-content: space-around;
align-items: stretch;
align-content: space-around;
align-self: stretch;
}

View File

@@ -0,0 +1,18 @@
:fullscreen {
background: black
}
[href=:fullscreen] {}
:fullscreen a {
box-sizing: border-box
}
:fullscreen a {
color: black
}
:-moz-full-screen a {
transform: translate3d(0, 0, 0);
}

View File

@@ -0,0 +1,7 @@
a {
width: fill-available;
}
b {
height: max-content;
}

View File

@@ -0,0 +1,18 @@
@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 {}
}

View File

@@ -0,0 +1,10 @@
a {
-ms-transition: all 1s;
transition: all 1s;
-ms-border-radius: 5px;
border-radius: 5px;
background: -ms-linear-gradient(white, black);
background: linear-gradient(white, black);
}

View File

@@ -0,0 +1,19 @@
.a {
break-inside: auto
}
.b {
break-inside: avoid
}
.c {
break-inside: avoid-column
}
.d {
break-inside: avoid-page
}
.e {
break-inside: avoid-region
}

View File

@@ -0,0 +1,3 @@
a {
display: flex;
}

3
node_modules/doiuse/test/cases/unimplemented/pie.css generated vendored Normal file
View File

@@ -0,0 +1,3 @@
a {
-pie-background: linear-gradient(white, black)
}

View File

@@ -0,0 +1,4 @@
::placeholder {
color: #999
}

View File

@@ -0,0 +1,5 @@
a {
color : black;
display: flex;
transition: 1s
}

View File

@@ -0,0 +1,8 @@
@supports
(cursor: grab) or
not (transition: transform) and
(color: black) {
a {
color: black;
}
}

View File

@@ -0,0 +1,17 @@
@page {
margin: 0.5cm;
}
/* comment */
@-moz-document url-prefix() {
a {
color: black;
}
}
a {
/* c */
color/**/: white;
padding: 0 /*{}*/ 1px /*}*/ 2px;
}

View File

@@ -0,0 +1,9 @@
a {
transition: transform 200ms, color 200ms;
transform: rotate(10deg);
}
div {
transition-property: filter;
animation-name: rotating;
}

View File

@@ -0,0 +1,4 @@
a {
background: -webkit-linear-gradient(top, #f00 0%, #fff 100%);
background: linear-gradient(to bottom, #f00 0%, #fff 100%);
}

View File

@@ -0,0 +1,17 @@
a {
-webkit-transition: 1s;
-moz-transition: 1s;
transition: 1s
}
a {
-moz-transition: 1s;
-o-transition: 1s;
transition: 1s
}
a {
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px
}

View File

@@ -0,0 +1,5 @@
a {
margin: calc(5% + 5px) calc(10% + 10px);
background: linear-gradient(black, white), radial-gradient(white, black);
content: " linear-gradient(black, white) ";
}

View File

@@ -0,0 +1,13 @@
.a {
-moz-transform: scale(.9999);
transform: scale(.9999);
}
.b {
-moz-transform: scale(.9999);
}
.c {
transform: scale(1);
-moz-transform: scale(2);
}