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

Unified Diff: third_party/WebKit/LayoutTests/inspector/coverage/gutter-js-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
Index: third_party/WebKit/LayoutTests/inspector/coverage/gutter-js-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/coverage/gutter-js-expected.txt b/third_party/WebKit/LayoutTests/inspector/coverage/gutter-js-expected.txt
index 31e646beed6425c72c299f9394f7a1e5527b0896..69a9ebacbfd7521c99b17c9a412d0e22dac67fa7 100644
--- a/third_party/WebKit/LayoutTests/inspector/coverage/gutter-js-expected.txt
+++ b/third_party/WebKit/LayoutTests/inspector/coverage/gutter-js-expected.txt
@@ -3,24 +3,24 @@ PASS
Tests the coverage highlight in sources after the recording finishes.
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) { return a + 3; } function inner4(a) { return a + 4; } function inner5(a) { return a + 5; }
-11: -
+11:
12: + return [inner1, inner2, inner3, inner4, inner5][index];
13: + }
-14: -
+14:
15: + function performActions() {
16: + return outer(1)(0) + outer(3)(0);
17: + } function outer2() {
18: - return outer(0)(0);
19: - }
-20: -
+20:

Powered by Google App Engine
This is Rietveld 408576698