diff options
Diffstat (limited to 'testing/web-platform/tests/fetch/content-encoding/resources')
5 files changed, 7 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" diff --git a/testing/web-platform/tests/fetch/content-encoding/resources/foo.octetstream.gz b/testing/web-platform/tests/fetch/content-encoding/resources/foo.octetstream.gz Binary files differnew file mode 100644 index 0000000000..f3df4cb89b --- /dev/null +++ b/testing/web-platform/tests/fetch/content-encoding/resources/foo.octetstream.gz diff --git a/testing/web-platform/tests/fetch/content-encoding/resources/foo.octetstream.gz.headers b/testing/web-platform/tests/fetch/content-encoding/resources/foo.octetstream.gz.headers new file mode 100644 index 0000000000..27d4f401f1 --- /dev/null +++ b/testing/web-platform/tests/fetch/content-encoding/resources/foo.octetstream.gz.headers @@ -0,0 +1,2 @@ +Content-type: application/octet-stream +Content-Encoding: gzip diff --git a/testing/web-platform/tests/fetch/content-encoding/resources/foo.text.gz b/testing/web-platform/tests/fetch/content-encoding/resources/foo.text.gz Binary files differnew file mode 100644 index 0000000000..05a5cce07b --- /dev/null +++ b/testing/web-platform/tests/fetch/content-encoding/resources/foo.text.gz diff --git a/testing/web-platform/tests/fetch/content-encoding/resources/foo.text.gz.headers b/testing/web-platform/tests/fetch/content-encoding/resources/foo.text.gz.headers new file mode 100644 index 0000000000..7def3ddc14 --- /dev/null +++ b/testing/web-platform/tests/fetch/content-encoding/resources/foo.text.gz.headers @@ -0,0 +1,2 @@ +Content-type: text/plain +Content-Encoding: gzip |