Skip to content

Commit 6521f6f

Browse files
committed
Revert "Use strict"
This reverts commit 96e1cb6.
1 parent 024b061 commit 6521f6f

36 files changed

+7
-48
lines changed

src/animation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
'use strict';
1615
(function(shared, scope, testing) {
1716

1817
shared.sequenceNumber = 0;
@@ -192,6 +191,7 @@
192191
this._inEffect = false;
193192
this._idle = true;
194193
this._paused = false;
194+
this._isFinished = true;
195195
this._finishedFlag = true;
196196
this._currentTime = 0;
197197
this._startTime = null;

src/apply-preserving-inline-style.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
'use strict';
1615
(function(scope, testing) {
1716

1817
var styleAttributes = {

src/apply.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
'use strict';
1615
(function(scope, testing) {
1716

1817
scope.apply = function(element, property, value) {

src/box-handler.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
'use strict';
1615
(function(scope, testing) {
1716
function consumeLengthPercentOrAuto(string) {
1817
return scope.consumeLengthOrPercent(string) || scope.consumeToken(/^auto/, string);

src/color-handler.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
'use strict';
1615
(function(scope, testing) {
1716

1817
var canvas = document.createElementNS('http://www.w3.org/1999/xhtml', 'canvas');

src/deprecation.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
'use strict';
1615
(function(shared) {
1716

1817
var silenced = {};

src/dev.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,5 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
'use strict';
1615
var WEB_ANIMATIONS_TESTING = false;
1716
var webAnimationsTesting = null;

src/dimension-handler.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
'use strict';
1615
(function(scope, testing) {
1716

1817
function parseDimension(unitRegExp, string) {

src/effect-callback.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
14-
15-
'use strict';
1614
(function(shared, scope, testing) {
1715

1816
var nullTarget = document.createElementNS('http://www.w3.org/1999/xhtml', 'div');

src/element-animatable.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
'use strict';
1615
(function(scope) {
1716
window.Element.prototype.animate = function(effectInput, options) {
1817
var id = '';

0 commit comments

Comments
 (0)