Skip to content

Commit 174cb8a

Browse files
committed
Removed workaround code that's not needed for newer CIs.
1 parent 7d96426 commit 174cb8a

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/style/css_shorthand_resolver.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -291,13 +291,6 @@ CssShorthandResolver.shorthands = (function() {
291291
"animation-fill-mode"
292292
],
293293
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-
301294
var declarations = split_values(decls);
302295
var template = [];
303296
var len = declarations["animation-name"].length;

0 commit comments

Comments
 (0)