Lines Matching defs:test
25 "Test numeric escapes in string literals - https://bugs.webkit.org/show_bug.cgi?id=51724"
28 function test(_stringLiteral, _nonStrictResult, _strictResult)
45 test("\\0", "\x00", "\x00");
46 test("\\1", "\x01");
47 test("\\7", "\x07");
48 test("\\8", "8");
49 test("\\9", "9");
53 test("\\00", "\x00");
54 test("\\000", "\x00");
55 test("\\0000", "\x000");
57 test("\\01", "\x01");
58 test("\\001", "\x01");
59 test("\\0001", "\x001");
61 test("\\10", "\x08");
62 test("\\100", "\x40");
63 test("\\1000", "\x400");
65 test("\\19", "\x019");
66 test("\\109", "\x089");
67 test("\\1009", "\x409");
69 test("\\99", "99");