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

Side by Side Diff: LayoutTests/http/tests/inspector/network/network-preview-json-expected.txt

Issue 654083006: DevTools: NetworkPanel: use optimistic JSON parser for response preview. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
1 Tests RequestJSONView ability to parse JSON passed in XHR, JSONP 1 Tests RequestJSONView ability to parse JSON passed in XHR, JSONP
2 2
3 Bug 65559 3 Bug 65559
4
5 Input: {"name": "value"}
6 Prefix:
7 Data: {"name":"value"}
8 Suffix:
9
10 Input: while(1); {"name": "value"}
11 Prefix: while(1);
12 Data: {"name":"value"}
13 Suffix:
14
15 Input: [,"foo", -4.2, true, false, null]
16 Prefix:
17 Data: [null,"foo",-4.2,true,false,null]
18 Suffix:
19
20 Input: [{"foo": {}, "bar": []},[[],{}]]
21 Prefix:
22 Data: [{"foo":{},"bar":[]},[[],{}]]
23 Suffix:
24
25 Input: /* vanilla */ run([1, 2, 3]);
26 Prefix: /* vanilla */ run(
27 Data: [1,2,3]
28 Suffix: );
29
30 Input: ["A\"B\u0020C\nD\\E\u04ABF"]
31 Prefix:
32 Data: ["A\"B C\nD\\EҫF"]
33 Suffix:
34
35 Input: <html>404 Page not found</html>
36 Can't parse
37
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698