Skip to content

Commit bd65218

Browse files
committed
Microsoft uses unprefixed CSS3 animations, so this should just rely on the "Require standard property with vendor prefix" rule instead. First noticed on css3please.com, also reported on caniuse.com, and http://msdn.microsoft.com/en-us/library/ie/hh673530(v=vs.85).aspx
1 parent 1506965 commit bd65218

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

src/rules/compatible-vendor-prefixes.js

Lines changed: 9 additions & 9 deletions
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)