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

Side by Side Diff: LayoutTests/inspector/sources/debugger-ui/debugger-inline-values-expected.txt

Issue 1153923005: DevTools: shard inspector/debugger tests for faster execution. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 Tests inline values rendering in the sources panel. 1 Tests inline values rendering in the sources panel.
2 2
3 =========== 8< ========== 3 =========== 8< ==========
4 [ 8] > debugger; 4 [ 8] > debugger;
5 [ 9] var a = { k: 1 }; 5 [ 9] var a = { k: 1 };
6 [10] var b = [1, 2, 3, 4, 5]; 6 [10] var b = [1, 2, 3, 4, 5];
7 [11] var c = new Array(100); c[10] = 1; 7 [11] var c = new Array(100); c[10] = 1;
8 [12] a.k = 2; 8 [12] a.k = 2;
9 [13] a.l = window; 9 [13] a.l = window;
10 [14] b[1]++; 10 [14] b[1]++;
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 [ 9] var a = { k: 1 }; a = Object {k: 2, l: Window} 104 [ 9] var a = { k: 1 }; a = Object {k: 2, l: Window}
105 [10] var b = [1, 2, 3, 4, 5]; b = [1, 3, body, 4, 5] 105 [10] var b = [1, 2, 3, 4, 5]; b = [1, 3, body, 4, 5]
106 [11] var c = new Array(100); c[10] = 1; c = [10: 1] 106 [11] var c = new Array(100); c[10] = 1; c = [10: 1]
107 [12] a.k = 2; a = Object {k: 2, l: Window} 107 [12] a.k = 2; a = Object {k: 2, l: Window}
108 [13] a.l = window; 108 [13] a.l = window;
109 [14] b[1]++; b = [1, 3, body, 4, 5] 109 [14] b[1]++; b = [1, 3, body, 4, 5]
110 [15] b[2] = document.body; 110 [15] b[2] = document.body;
111 [16] > } 111 [16] > }
112 [17] 112 [17]
113 113
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698