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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/debugger-inline-values-expected.txt

Issue 2977463002: DevTools: use 'empty' for array holes (Closed)
Patch Set: Created 3 years, 5 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/sources/debugger-ui/debugger-inline-values-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/debugger-inline-values-expected.txt b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/debugger-inline-values-expected.txt
index 55cde59d27e4830b8f10c98a13de30152572ff22..929df03d204611afc66633adf59615f4fabb9487 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/debugger-inline-values-expected.txt
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/debugger-inline-values-expected.txt
@@ -59,7 +59,7 @@ Tests inline values rendering in the sources panel.
[ 8] debugger;
[ 9] var a = { k: 1 }; a = {k: 1}
[10] var b = [1, 2, 3, 4, 5]; b = (5) [1, 2, 3, 4, 5]
-[11] var c = new Array(100); c[10] = 1; c = (100) [undefined × 10, 1, undefined × 89]
+[11] var c = new Array(100); c[10] = 1; c = (100) [empty × 10, 1, empty × 89]
[12] > a.k = 2;
[13] a.l = window;
[14] b[1]++;
@@ -70,7 +70,7 @@ Tests inline values rendering in the sources panel.
[ 8] debugger;
[ 9] var a = { k: 1 }; a = {k: 2}
[10] var b = [1, 2, 3, 4, 5]; b = (5) [1, 2, 3, 4, 5]
-[11] var c = new Array(100); c[10] = 1; c = (100) [undefined × 10, 1, undefined × 89]
+[11] var c = new Array(100); c[10] = 1; c = (100) [empty × 10, 1, empty × 89]
[12] a.k = 2; a = {k: 2}
[13] > a.l = window;
[14] b[1]++;
@@ -81,7 +81,7 @@ Tests inline values rendering in the sources panel.
[ 8] debugger;
[ 9] var a = { k: 1 }; a = {k: 2, l: Window}
[10] var b = [1, 2, 3, 4, 5]; b = (5) [1, 2, 3, 4, 5]
-[11] var c = new Array(100); c[10] = 1; c = (100) [undefined × 10, 1, undefined × 89]
+[11] var c = new Array(100); c[10] = 1; c = (100) [empty × 10, 1, empty × 89]
[12] a.k = 2; a = {k: 2, l: Window}
[13] a.l = window;
[14] > b[1]++;
@@ -92,7 +92,7 @@ Tests inline values rendering in the sources panel.
[ 8] debugger;
[ 9] var a = { k: 1 }; a = {k: 2, l: Window}
[10] var b = [1, 2, 3, 4, 5]; b = (5) [1, 3, 3, 4, 5]
-[11] var c = new Array(100); c[10] = 1; c = (100) [undefined × 10, 1, undefined × 89]
+[11] var c = new Array(100); c[10] = 1; c = (100) [empty × 10, 1, empty × 89]
[12] a.k = 2; a = {k: 2, l: Window}
[13] a.l = window;
[14] b[1]++; b = (5) [1, 3, 3, 4, 5]
@@ -103,7 +103,7 @@ Tests inline values rendering in the sources panel.
[ 8] debugger;
[ 9] var a = { k: 1 }; a = {k: 2, l: Window}
[10] var b = [1, 2, 3, 4, 5]; b = (5) [1, 3, body, 4, 5]
-[11] var c = new Array(100); c[10] = 1; c = (100) [undefined × 10, 1, undefined × 89]
+[11] var c = new Array(100); c[10] = 1; c = (100) [empty × 10, 1, empty × 89]
[12] a.k = 2; a = {k: 2, l: Window}
[13] a.l = window;
[14] b[1]++; b = (5) [1, 3, body, 4, 5]

Powered by Google App Engine
This is Rietveld 408576698