diff options
Diffstat (limited to 'test/compress/properties.js')
-rw-r--r-- | test/compress/properties.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/compress/properties.js b/test/compress/properties.js index 29bdfe2a..3e06dc1e 100644 --- a/test/compress/properties.js +++ b/test/compress/properties.js @@ -13,7 +13,7 @@ keep_properties: { dot_properties: { options = { properties: true, - screw_ie8: false + ie8: true, }; input: { a["foo"] = "bar"; @@ -36,7 +36,7 @@ dot_properties: { dot_properties_es5: { options = { properties: true, - screw_ie8: true + ie8: false, }; input: { a["foo"] = "bar"; @@ -125,7 +125,7 @@ evaluate_string_length: { mangle_properties: { mangle_props = { - ignore_quoted: false + keep_quoted: false }; input: { a["foo"] = "bar"; @@ -148,7 +148,7 @@ mangle_unquoted_properties: { properties: false } mangle_props = { - ignore_quoted: true + keep_quoted: true } beautify = { beautify: false, @@ -233,12 +233,12 @@ mangle_debug_suffix: { } } -mangle_debug_suffix_ignore_quoted: { +mangle_debug_suffix_keep_quoted: { options = { properties: false } mangle_props = { - ignore_quoted: true, + keep_quoted: true, debug: "XYZ", reserved: [] } |