Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Unified Diff: third_party/WebKit/LayoutTests/inspector/coverage/decorations-after-script-formatter-expected.txt

Issue 2861393004: DevTools/Coverage: fix decorations in HTML (Closed)
Patch Set: reverted toFixedIfFloating() changes Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/coverage/gutter-css-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 378b26c5e0aadcca04b43b97218dba09adc4f72f..a863331e689642f1abf58d6e601ccf68a9a0f35e 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
@@ -3,15 +3,15 @@ PASS
Tests the gutter decorations in target source code after ScriptFormatterEditorAction
0: + function outer(index) {
-1: -
+1:
2: - function inner1(a) {
3: - return a + 1;
4: - }
-5: -
+5:
6: + function inner2(a) {
7: + return a + 2;
8: + }
-9: -
+9:
10: - function inner3(a) {
11: - return a + 3;
12: - }
@@ -21,15 +21,15 @@ Tests the gutter decorations in target source code after ScriptFormatterEditorAc
16: - function inner5(a) {
17: - return a + 5;
18: - }
-19: -
+19:
20: + return [inner1, inner2, inner3, inner4, inner5][index];
21: + }
-22: -
+22:
23: + function performActions() {
24: + return outer(1)(0) + outer(3)(0);
25: + }
26: - function outer2() {
27: - return outer(0)(0);
28: - }
-29: -
+29:
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/coverage/gutter-css-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698