diff options
Diffstat (limited to 'testing/web-platform/tests/encoding/resources/text-plain-charset.py')
-rw-r--r-- | testing/web-platform/tests/encoding/resources/text-plain-charset.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testing/web-platform/tests/encoding/resources/text-plain-charset.py b/testing/web-platform/tests/encoding/resources/text-plain-charset.py new file mode 100644 index 000000000..a1c07e701 --- /dev/null +++ b/testing/web-platform/tests/encoding/resources/text-plain-charset.py @@ -0,0 +1,3 @@ +def main(request, response): + response.headers.set("Content-Type", "text/plain;charset=" + request.GET.first("label")) + response.content = "hello encoding" |