Skip to content

Commit a2758c3

Browse files
committed
Merge pull request #292 from zachleat/patch-1
Microsoft uses unprefixed CSS3 animations
2 parents 1506965 + bd65218 commit a2758c3

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/rules/compatible-vendor-prefixes.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ CSSLint.addRule({
2626

2727
// See http://peter.sh/experiments/vendor-prefixed-css-property-overview/ for details
2828
compatiblePrefixes = {
29-
"animation" : "webkit moz ms",
30-
"animation-delay" : "webkit moz ms",
31-
"animation-direction" : "webkit moz ms",
32-
"animation-duration" : "webkit moz ms",
33-
"animation-fill-mode" : "webkit moz ms",
34-
"animation-iteration-count" : "webkit moz ms",
35-
"animation-name" : "webkit moz ms",
36-
"animation-play-state" : "webkit moz ms",
37-
"animation-timing-function" : "webkit moz ms",
29+
"animation" : "webkit moz",
30+
"animation-delay" : "webkit moz",
31+
"animation-direction" : "webkit moz",
32+
"animation-duration" : "webkit moz",
33+
"animation-fill-mode" : "webkit moz",
34+
"animation-iteration-count" : "webkit moz",
35+
"animation-name" : "webkit moz",
36+
"animation-play-state" : "webkit moz",
37+
"animation-timing-function" : "webkit moz",
3838
"appearance" : "webkit moz",
3939
"border-end" : "webkit moz",
4040
"border-end-color" : "webkit moz",

0 commit comments

Comments
 (0)