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

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

Issue 2723773003: DevTools: restore array lengths for long arrays (Closed)
Patch Set: ac Created 3 years, 10 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 b0503d7c79b5f2531bd2326a54e50d514ab18498..d52cf9cc6b15d97cd1593d11ac942d7677d6a272 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
@@ -36,7 +36,7 @@ Tests inline values rendering in the sources panel.
=========== 8< ==========
[ 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]
+[10] var b = [1, 2, 3, 4, 5]; b = (5) [1, 2, 3, 4, 5]
[11] > var c = new Array(100); c[10] = 1;
[12] a.k = 2;
[13] a.l = window;
@@ -47,7 +47,7 @@ Tests inline values rendering in the sources panel.
=========== 8< ==========
[ 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]
+[10] var b = [1, 2, 3, 4, 5]; b = (5) [1, 2, 3, 4, 5]
[11] > var c = new Array(100); c[10] = 1;
[12] a.k = 2;
[13] a.l = window;
@@ -58,8 +58,8 @@ Tests inline values rendering in the sources panel.
=========== 8< ==========
[ 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 = [undefined × 10, 1, undefined × 89]
+[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]
[12] > a.k = 2;
[13] a.l = window;
[14] b[1]++;
@@ -69,8 +69,8 @@ Tests inline values rendering in the sources panel.
=========== 8< ==========
[ 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 = [undefined × 10, 1, undefined × 89]
+[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]
[12] a.k = 2; a = Object {k: 2}
[13] > a.l = window;
[14] b[1]++;
@@ -80,8 +80,8 @@ Tests inline values rendering in the sources panel.
=========== 8< ==========
[ 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 = [undefined × 10, 1, undefined × 89]
+[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]
[12] a.k = 2; a = Object {k: 2, l: Window}
[13] a.l = window;
[14] > b[1]++;
@@ -91,22 +91,22 @@ Tests inline values rendering in the sources panel.
=========== 8< ==========
[ 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 = [undefined × 10, 1, undefined × 89]
+[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]
[12] a.k = 2; a = Object {k: 2, l: Window}
[13] a.l = window;
-[14] b[1]++; b = [1, 3, 3, 4, 5]
+[14] b[1]++; b = (5) [1, 3, 3, 4, 5]
[15] > b[2] = document.body;
[16] }
[17]
=========== 8< ==========
[ 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 = [undefined × 10, 1, undefined × 89]
+[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]
[12] a.k = 2; a = Object {k: 2, l: Window}
[13] a.l = window;
-[14] b[1]++; b = [1, 3, body, 4, 5]
+[14] b[1]++; b = (5) [1, 3, body, 4, 5]
[15] b[2] = document.body;
[16] > }
[17]

Powered by Google App Engine
This is Rietveld 408576698