aboutsummaryrefslogtreecommitdiff
path: root/test/compress/screw-ie8.js
blob: 527aea04f290099542fd137026700e389f455621 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
do_screw: {
    options = { screw_ie8: true };
    beautify = {
        screw_ie8: true,
        ascii_only: true
    };

    input: f("\v");
    expect_exact: 'f("\\v");';
}

dont_screw: {
    options = { screw_ie8: false };
    beautify = { screw_ie8: false, ascii_only: true };

    input: f("\v");
    expect_exact: 'f("\\x0B");';
}