We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d96426 commit 174cb8aCopy full SHA for 174cb8a
src/style/css_shorthand_resolver.js
@@ -291,13 +291,6 @@ CssShorthandResolver.shorthands = (function() {
291
"animation-fill-mode"
292
],
293
format: function(decls) {
294
- // Workaround for CORE-45497: -o-animation-duration computed style
295
- // missing comma when having multiple values
296
- // Fixed in ci-322
297
- var duration = decls["animation-duration"];
298
- if (duration.value.indexOf(" ") !== -1 && duration.value.indexOf(",") === -1)
299
- duration.value = duration.value.replace(/\s+/g, ", ");
300
-
301
var declarations = split_values(decls);
302
var template = [];
303
var len = declarations["animation-name"].length;
0 commit comments