diff options
Diffstat (limited to 'testing/web-platform/tests/fetch/content-encoding/resources/bad-gzip-body.py')
-rw-r--r-- | testing/web-platform/tests/fetch/content-encoding/resources/bad-gzip-body.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testing/web-platform/tests/fetch/content-encoding/resources/bad-gzip-body.py b/testing/web-platform/tests/fetch/content-encoding/resources/bad-gzip-body.py new file mode 100644 index 0000000000..a79b94ed04 --- /dev/null +++ b/testing/web-platform/tests/fetch/content-encoding/resources/bad-gzip-body.py @@ -0,0 +1,3 @@ +def main(request, response): + headers = [(b"Content-Encoding", b"gzip")] + return headers, b"not actually gzip" |