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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/fetch/api/resources/clean-stash.py

Issue 2778753002: Import //fetch from Web Platform Tests. (Closed)
Patch Set: Baselines. Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/external/wpt/fetch/api/resources/clean-stash.py
diff --git a/third_party/WebKit/LayoutTests/external/wpt/fetch/api/resources/clean-stash.py b/third_party/WebKit/LayoutTests/external/wpt/fetch/api/resources/clean-stash.py
new file mode 100644
index 0000000000000000000000000000000000000000..3ae731052692e048a07d65a6e015fe5a76362098
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/external/wpt/fetch/api/resources/clean-stash.py
@@ -0,0 +1,6 @@
+def main(request, response):
+ token = request.GET.first("token")
+ if request.server.stash.take(token) is not None:
+ return "1"
+ else:
+ return "0"

Powered by Google App Engine
This is Rietveld 408576698