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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/resources/navigation-redirect-body.py

Issue 2872363002: Upstream service worker navigation tests to WPT (Closed)
Patch Set: Created 3 years, 7 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 import os
2
3 filename = os.path.basename(__file__)
4
5 def main(request, response):
6 if request.method == 'POST':
7 return 302, [('Location', './%s?redirect' % filename)], ''
8
9 return [('Content-Type', 'text/plain')], request.request_path
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698