Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / sources / pretty-print-javascript-classes-expected.txt
blob3210d9b145c01a2c15458b915a5c65480d880c07
1 Verifies JavaScript pretty-printing functionality.
4 Running: emptyClass
5 ====== 8< ------
6 class Test {
9 ------ >8 ======
10 Correct mapping for <Test>
11 Correct mapping for <class>
13 Running: emptyConstructor
14 ====== 8< ------
15 class Test {
16     constructor() {}
19 ------ >8 ======
20 Correct mapping for <Test>
21 Correct mapping for <class>
22 Correct mapping for <constructor>
24 Running: simpleClass
25 ====== 8< ------
26 class Test {
27     constructor() {
28         this.bar = 10;
29     }
30     givemebar() {
31         return this.bar;
32     }
35 ------ >8 ======
36 Correct mapping for <Test>
37 Correct mapping for <class>
38 Correct mapping for <constructor>
40 Running: extendedClass
41 ====== 8< ------
42 class Foo extends Bar {
43     constructor(name) {
44         super(name);
45     }
46     getName() {
47         return super.getName();
48     }
51 ------ >8 ======
52 Correct mapping for <Foo>
53 Correct mapping for <Bar>
54 Correct mapping for <extends>
55 Correct mapping for <super>
56 Correct mapping for <name>
58 Running: twoConsecutiveClasses
59 ====== 8< ------
60 class A {
62 class B extends A {
63     constructor() {
64         super();
65     }
68 ------ >8 ======
69 Correct mapping for <B>
70 Correct mapping for <extends>
71 Correct mapping for <constructor>
72 Correct mapping for <super>
74 Running: staticMethod
75 ====== 8< ------
76 class Employer {
77     static count() {
78         this._counter = (this._counter || 0) + 1;
79         return this._counter;
80     }
83 ------ >8 ======
84 Correct mapping for <Employer>
85 Correct mapping for <static>
86 Correct mapping for <1>
87 Correct mapping for <return>