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

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

Issue 2515913002: DevTools: object formatter renders arrays the same way as printArrayResult() (Closed)
Patch Set: DevTools: object formatter renders arrays the same way as printArrayResult() Created 4 years, 1 month 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 4b36bb9ca976635b5d1fe473efd7755bae31980d..b0503d7c79b5f2531bd2326a54e50d514ab18498 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 = Object {k: 1}
[10] var b = [1, 2, 3, 4, 5]; b = [1, 2, 3, 4, 5]
-[11] var c = new Array(100); c[10] = 1; c = [10: 1]
+[11] var c = new Array(100); c[10] = 1; c = [undefined × 10, 1, undefined × 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 = Object {k: 2}
[10] var b = [1, 2, 3, 4, 5]; b = [1, 2, 3, 4, 5]
-[11] var c = new Array(100); c[10] = 1; c = [10: 1]
+[11] var c = new Array(100); c[10] = 1; c = [undefined × 10, 1, undefined × 89]
[12] a.k = 2; a = Object {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 = Object {k: 2, l: Window}
[10] var b = [1, 2, 3, 4, 5]; b = [1, 2, 3, 4, 5]
-[11] var c = new Array(100); c[10] = 1; c = [10: 1]
+[11] var c = new Array(100); c[10] = 1; c = [undefined × 10, 1, undefined × 89]
[12] a.k = 2; a = Object {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 = Object {k: 2, l: Window}
[10] var b = [1, 2, 3, 4, 5]; b = [1, 3, 3, 4, 5]
-[11] var c = new Array(100); c[10] = 1; c = [10: 1]
+[11] var c = new Array(100); c[10] = 1; c = [undefined × 10, 1, undefined × 89]
[12] a.k = 2; a = Object {k: 2, l: Window}
[13] a.l = window;
[14] b[1]++; b = [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 = Object {k: 2, l: Window}
[10] var b = [1, 2, 3, 4, 5]; b = [1, 3, body, 4, 5]
-[11] var c = new Array(100); c[10] = 1; c = [10: 1]
+[11] var c = new Array(100); c[10] = 1; c = [undefined × 10, 1, undefined × 89]
[12] a.k = 2; a = Object {k: 2, l: Window}
[13] a.l = window;
[14] b[1]++; b = [1, 3, body, 4, 5]

Powered by Google App Engine
This is Rietveld 408576698