summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/xhr/resources/img-utf8-html.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/xhr/resources/img-utf8-html.py')
-rw-r--r--testing/web-platform/tests/xhr/resources/img-utf8-html.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/testing/web-platform/tests/xhr/resources/img-utf8-html.py b/testing/web-platform/tests/xhr/resources/img-utf8-html.py
new file mode 100644
index 0000000000..3057674cb6
--- /dev/null
+++ b/testing/web-platform/tests/xhr/resources/img-utf8-html.py
@@ -0,0 +1,5 @@
+def main(request, response):
+ headers = [(b"Content-type", b"text/html;charset=utf-8")]
+ content = b"<img>foo"
+
+ return headers, content