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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/fetch/api/resources/echo-content.py

Issue 2778753002: Import //fetch from Web Platform Tests. (Closed)
Patch Set: Baselines. Created 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 def main(request, response):
2
3 headers = [("X-Request-Method", request.method),
4 ("X-Request-Content-Length", request.headers.get("Content-Length" , "NO")),
5 ("X-Request-Content-Type", request.headers.get("Content-Type", "N O"))]
6
7 content = request.body
8
9 return headers, content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698