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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-preview-json-expected.txt

Issue 1912973002: [DevTools] JSONView parsing smarter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/http/tests/inspector/network/network-preview-json-expected.txt
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-preview-json-expected.txt b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-preview-json-expected.txt
deleted file mode 100644
index cce53720a18af50f07e0102a64f6b2f896e0cc81..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-preview-json-expected.txt
+++ /dev/null
@@ -1,43 +0,0 @@
-Tests RequestJSONView ability to parse JSON passed in XHR, JSONP
-
-Bug 65559
-
-Input: {"name": "value"}
-Prefix:
-Data: {"name":"value"}
-Suffix:
-
-Input: while(1); {"name": "value"}
-Prefix: while(1);
-Data: {"name":"value"}
-Suffix:
-
-Input: [, "foo", -4.2, true, false, null]
-Prefix:
-Data: [null,"foo",-4.2,true,false,null]
-Suffix:
-
-Input: [{"foo": {}, "bar": []},[[],{}]]
-Prefix:
-Data: [{"foo":{},"bar":[]},[[],{}]]
-Suffix:
-
-Input: /* vanilla */ run ( [1, 2, 3] ) ;
-Prefix: /* vanilla */ run (
-Data: [1,2,3]
-Suffix: ) ;
-
-Input: ["A\"B\u0020C\nD\\E\u04ABF"]
-Prefix:
-Data: ["A\"B C\nD\\EҫF"]
-Suffix:
-
-Input: Text with with {}) inside
-Can't parse
-
-Input: <html>404 Page not found with foo({}) inside</html>
-Can't parse
-
-Input: /* vanilla prefix too large to be considered prefix Ok? */ run([1, 2, 3]); // since it is unlikely JSONP
-Can't parse
-

Powered by Google App Engine
This is Rietveld 408576698