| Index: third_party/WebKit/LayoutTests/inspector/coverage/decorations-after-script-formatter-expected.txt
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/coverage/decorations-after-script-formatter-expected.txt b/third_party/WebKit/LayoutTests/inspector/coverage/decorations-after-script-formatter-expected.txt
|
| index d986177e1d9a678ece52e5c28773d14b39e5154d..b09db4dcfdac70d956c97494da92828d0a33a178 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/coverage/decorations-after-script-formatter-expected.txt
|
| +++ b/third_party/WebKit/LayoutTests/inspector/coverage/decorations-after-script-formatter-expected.txt
|
| @@ -2,6 +2,34 @@ PASS
|
|
|
| Tests the gutter decorations in target source code after ScriptFormatterEditorAction
|
|
|
| -Numbers of lines that were not used in the formatted script:
|
| -3,4,5,11,12,13,17,18,19,27,28,29
|
| +0: + function outer(index) {
|
| +1: +
|
| +2: * function inner1(a) {
|
| +3: - return a + 1;
|
| +4: * }
|
| +5: +
|
| +6: + function inner2(a) {
|
| +7: + return a + 2;
|
| +8: + }
|
| +9: +
|
| +10: * function inner3(a) {
|
| +11: - return a + 3;
|
| +12: * }
|
| +13: + function inner4(a) {
|
| +14: + return a + 4;
|
| +15: + }
|
| +16: * function inner5(a) {
|
| +17: - return a + 5;
|
| +18: * }
|
| +19: +
|
| +20: + return [inner1, inner2, inner3, inner4, inner5][index];
|
| +21: * }
|
| +22: -
|
| +23: * function performActions() {
|
| +24: + return outer(1)(0) + outer(3)(0);
|
| +25: * }
|
| +26: - function outer2() {
|
| +27: - return outer(0)(0);
|
| +28: - }
|
| +29:
|
|
|
|
|