Skip to content

Commit f93e9d9

Browse files
committed
Prepare extensionAPI for 2.3.1 merge
Temporarily revert AnimatedCSSStyleDeclaration.prototype._clear change, to avoid conflicts during 2.3.1 merge.
1 parent 940fbfb commit f93e9d9

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/apply-preserving-inline-style.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,7 @@
113113
this._isAnimatedProperty[property] = true;
114114
},
115115
_clear: function(property) {
116-
if (property in this._surrogateStyle) {
117-
this._style[property] = this._surrogateStyle[property];
118-
} else {
119-
delete this._style[property];
120-
}
116+
this._style[property] = this._surrogateStyle[property];
121117
delete this._isAnimatedProperty[property];
122118
},
123119
_getAnimated: function(property) {

0 commit comments

Comments
 (0)