Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / sources / pretty-print-javascript-4-expected.txt
blob96f3d4897f8519d449b113258c249fb30661b759
1 Verifies JavaScript pretty-printing functionality.
4 Running: withStatementFormatting
5 ====== 8< ------
6 with (obj)
7     log('first');
8 with (nice) {
9     log(1);
10     log(2);
12 done();
14 ------ >8 ======
15 Correct mapping for <first>
16 Correct mapping for <obj>
17 Correct mapping for <nice>
18 Correct mapping for <1>
19 Correct mapping for <2>
20 Correct mapping for <done>
22 Running: switchStatementFormatting
23 ====== 8< ------
24 switch (a) {
25 case 1, 3:
26     log("odd");
27     break;
28 case 2:
29     log("even");
30     break;
31 case 42:
32 case 89:
33     log(a);
34 default:
35     log("interesting");
36     log(a);
38 log("done");
40 ------ >8 ======
41 Correct mapping for <even>
42 Correct mapping for <odd>
43 Correct mapping for <89>
44 Correct mapping for <done>
46 Running: whileFormatting
47 ====== 8< ------
48 while (true) {
49     print('infinity');
52 ------ >8 ======
53 Correct mapping for <while>
54 Correct mapping for <infinity>
55 Correct mapping for <);>
57 Running: doWhileFormatting
58 ====== 8< ------
59 do {
60     print('infinity');
61 } while (true);
62 ------ >8 ======
63 Correct mapping for <while>
64 Correct mapping for <infinity>
66 Running: functionFormatting
67 ====== 8< ------
68 function test(a, b, c) {
69     a *= b;
70     return c + a;
73 ------ >8 ======
74 Correct mapping for <return>
75 Correct mapping for <*=>