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

Side by Side Diff: LayoutTests/inspector/json-balanced-tokenizer-expected.txt

Issue 967853002: DevTools: n^2 -> n while loading heap snapshots and timeline files. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fixed the load test. Created 5 years, 9 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
(Empty)
1 Test WebInspector.TextUtils.BalancedJSONTokenizer.
2
3 Running: testMatchQuotes
4
5 Parsing {"odd back slashes with text around":"tes\\\"t"}
6 {"odd back slashes with text around":"tes\\\"t"}
7
8 Parsing {"escaped double quotes":"\"test\""}
9 {"escaped double quotes":"\"test\""}
10
11 Parsing {"escaped back slash before double quote":"test\\"}
12 {"escaped back slash before double quote":"test\\"}
13
14 Parsing {"1":2}
15 {"1":2}
16
17 Parsing {"":""}
18 {"":""}
19
20 Parsing {"nested brackets":{}}
21 {"nested brackets":{}}
22
23 Parsing {"nested brackets with double quotes":{"":""}}
24 {"nested brackets with double quotes":{"":""}}
25
26 Parsing {"etc":{"\\":"\""}}
27 {"etc":{"\\":"\""}}
28
29 Parsing {"etc":{"\\\\":"\\"}}
30 {"etc":{"\\\\":"\\"}}
31
32 Parsing {"etc":{"\\\\\"":"\\\\\""}}
33 {"etc":{"\\\\\"":"\\\\\""}}
34
35 Running: testMatchSequenceUsingOneShot
36
37 Parsing {"one":"one"}
38 {"one":"one"}
39
40 Parsing [{"one":"one"},{"two":"two"}]
41 [{"one":"one"}
42
43 Parsing [{"one":"one"},{"two":"two"},{"three":"three"}]
44 [{"one":"one"}
45
46 Running: testMatchSequenceUsingMultiple
47
48 Parsing {"one":"one"}
49 {"one":"one"}
50
51 Parsing [{"one":"one"},{"two":"two"}]
52 [{"one":"one"},{"two":"two"}
53
54 Parsing [{"one":"one"},{"two":"two"},{"three":"three"}]
55 [{"one":"one"},{"two":"two"},{"three":"three"}
56
57 Running: testIncrementalWrites
58
59 Running at once:
60 [{"odd back slashes with text around":"tes\\\"t"},{"escaped double quotes":"\"te st\""},{"escaped back slash before double quote":"test\\"},{"1":2},{"":""},{"nes ted brackets":{}},{"nested brackets with double quotes":{"":""}},{"etc":{"\\":"\ ""}},{"etc":{"\\\\":"\\"}},{"etc":{"\\\\\"":"\\\\\""}}
61
62 Running by 3:
63 [{"odd back slashes with text around":"tes\\\"t"}
64 ,{"escaped double quotes":"\"test\""}
65 ,{"escaped back slash before double quote":"test\\"}
66 ,{"1":2}
67 ,{"":""}
68 ,{"nested brackets":{}}
69 ,{"nested brackets with double quotes":{"":""}}
70 ,{"etc":{"\\":"\""}}
71 ,{"etc":{"\\\\":"\\"}}
72 ,{"etc":{"\\\\\"":"\\\\\""}}
73
74 Running by 15:
75 [{"odd back slashes with text around":"tes\\\"t"}
76 ,{"escaped double quotes":"\"test\""}
77 ,{"escaped back slash before double quote":"test\\"},{"1":2}
78 ,{"":""}
79 ,{"nested brackets":{}}
80 ,{"nested brackets with double quotes":{"":""}}
81 ,{"etc":{"\\":"\""}}
82 ,{"etc":{"\\\\":"\\"}}
83 ,{"etc":{"\\\\\"":"\\\\\""}}
84
85 Running by 50:
86 [{"odd back slashes with text around":"tes\\\"t"}
87 ,{"escaped double quotes":"\"test\""}
88 ,{"escaped back slash before double quote":"test\\"},{"1":2}
89 ,{"":""},{"nested brackets":{}}
90 ,{"nested brackets with double quotes":{"":""}},{"etc":{"\\":"\""}}
91 ,{"etc":{"\\\\":"\\"}},{"etc":{"\\\\\"":"\\\\\""}}
92
OLDNEW
« no previous file with comments | « LayoutTests/inspector/json-balanced-tokenizer.html ('k') | Source/devtools/front_end/common/Progress.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698