Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / editor / text-editor-indent-autodetection-expected.txt
blob0cee5140e3272ff96ba5ce2536379239c7153e23
1 This test checks text editor indent autodetection functionality
3 --------------TEST 1--------------
4 function foo() {
5         return 42;
7 --------------TEST 2--------------
8 console.log("Hello!");
9 --------------TEST 3--------------
10 /**
11  * This is a header comment that spans
12  * for a lot of lines
13  *
14  *
15  *
16  *
17  *
18  *
19  *
20  *
21  *
22  *
23  *
24  *
25  *
26  *
27  *
28  */
29 function foo() {
30   return 42;
32 --------------TEST 4--------------
33 function MyClass()
35     this._foo = "bar";
38 MyClass.prototype = {
39     method1: function()
40     {
41         var sum = 0;
42         for(var i = 0; i < 100; ++i) {
43             sum += i;
44         }
45         return sum;
46     },
48     method2: function()
49     {
50         while(true) {
51             break;
52         }
53     },
55 --------------TEST 5--------------
56   a
57   a
58     b
59     b
60     b
63 --------------TEST 6--------------
64         tab
65                 tab
66         tab
67         tab
68 --------------TEST 7-------------- (empty content)
69 --------------TEST 8--------------
70 function foo() {
71   var i = 0;
72   function bar() {
73     var a = [];
74     a.push(1);
75     a.push(12);
76     a.push(42);
77     a.push(44);
78     return a.join("!");
79   }
81   (function() {
82     var a = {
83       a: function() {
84         vbr b = [];
85         b.push(1);
86         b.push(12);
87         b.push(42);
88         b.push(44);
89         b.push(44 * 2);
90         return b.join("?");
91       }
92     };
93   })();
95 Tests number: 8
97 Running: 
98 Autodetected indentation for test1: 8 spaces
100 Running: 
101 Autodetected indentation for test2: 4 spaces
103 Running: 
104 Autodetected indentation for test3: 2 spaces
106 Running: 
107 Autodetected indentation for test4: 4 spaces
109 Running: 
110 Autodetected indentation for test5: 2 spaces
112 Running: 
113 Autodetected indentation for test6: Tab
115 Running: 
116 Autodetected indentation for test7: 4 spaces
118 Running: 
119 Autodetected indentation for test8: 2 spaces