| Index: third_party/WebKit/LayoutTests/external/wpt/fetch/api/resources/status.py
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/fetch/api/resources/status.py b/third_party/WebKit/LayoutTests/external/wpt/fetch/api/resources/status.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5d72e10b24bfd5a36d719940388bb55d44433546
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/fetch/api/resources/status.py
|
| @@ -0,0 +1,9 @@
|
| +def main(request, response):
|
| + code = int(request.GET.first("code", 200))
|
| + text = request.GET.first("text", "OMG")
|
| + content = request.GET.first("content", "")
|
| + type = request.GET.first("type", "")
|
| + status = (code, text)
|
| + headers = [("Content-Type", type),
|
| + ("X-Request-Method", request.method)]
|
| + return status, headers, content
|
|
|