From f579f1aa47a0ba13955433b90b56bea241849f83 Mon Sep 17 00:00:00 2001 From: "Alex Lam S.L" Date: Sun, 13 Dec 2020 18:05:07 +0000 Subject: emulate global context in Node.js & web (#4379) --- test/compress/ie8.js | 4 ---- 1 file changed, 4 deletions(-) (limited to 'test/compress/ie8.js') diff --git a/test/compress/ie8.js b/test/compress/ie8.js index c5b8b155..c28512ac 100644 --- a/test/compress/ie8.js +++ b/test/compress/ie8.js @@ -588,7 +588,6 @@ issue_3197_1: { ie8: false, } input: { - var window = {}; !function() { function Foo() { console.log(this instanceof Foo); @@ -598,7 +597,6 @@ issue_3197_1: { new window.Foo(); } expect: { - var window = {}; window.Foo = function o() { console.log(this instanceof o); }; @@ -619,7 +617,6 @@ issue_3197_1_ie8: { ie8: true, } input: { - var window = {}; !function() { function Foo() { console.log(this instanceof Foo); @@ -629,7 +626,6 @@ issue_3197_1_ie8: { new window.Foo(); } expect: { - var window = {}; window.Foo = function Foo() { console.log(this instanceof Foo); }; -- cgit v1.2.3