Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / sources / pretty-print-javascript-6-expected.txt
blob4ef16da16708ecefcd3348a6715ea843a0f3c294
1 Verifies JavaScript pretty-printing functionality.
4 Running: trailingCommentsTest
5 ====== 8< ------
6 noop();
7 //#sourceMappingURL=program.js.map
9 ------ >8 ======
11 Running: inlinedScriptFormatting
12 ====== 8< ------
13 <html><body><script>
14 function f() {}
15 </script><script>
16 function g() {
17     var a;
18     window.return = 10;
19     if (a)
20         return;
22 </script></body></html>
23 ------ >8 ======
25 Running: generatorFormatter
26 ====== 8< ------
27 function *max() {
28     var a = yield;
29     var b = yield 10;
30     if (a > b)
31         return a;
32     else
33         return b;
36 ------ >8 ======
37 Correct mapping for <max>
38 Correct mapping for <*>
39 Correct mapping for <else>
41 Running: blockCommentFormatter
42 ====== 8< ------
43 /** this
44  * is
45  * block
46  * comment
47  */
48 var a = 10;
50 ------ >8 ======
51 Correct mapping for <this>
52 Correct mapping for <is>
53 Correct mapping for <block>
54 Correct mapping for <comment>
55 Correct mapping for <var>
56 Correct mapping for <10>
58 Running: lexicalScoping
59 ====== 8< ------
60 for (var i = 0; i < names.length; ++i) {
61     let name = names[i];
62     let person = persons[i];
65 ------ >8 ======
66 Correct mapping for <for>
67 Correct mapping for <person>
68 Correct mapping for <name>
69 Correct mapping for <}>
71 Running: anonimousFunctionAsParameter
72 ====== 8< ------
73 setTimeout(function() {
74     alert(1);
75 }, 2000);
77 ------ >8 ======
78 Correct mapping for <setTimeout>
79 Correct mapping for <function>
80 Correct mapping for <alert>
81 Correct mapping for <2000>