diff options
Diffstat (limited to 'testing/web-platform/tests/web-animations/resources/xhr-doc.py')
-rw-r--r-- | testing/web-platform/tests/web-animations/resources/xhr-doc.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testing/web-platform/tests/web-animations/resources/xhr-doc.py b/testing/web-platform/tests/web-animations/resources/xhr-doc.py new file mode 100644 index 0000000000..0023a44e22 --- /dev/null +++ b/testing/web-platform/tests/web-animations/resources/xhr-doc.py @@ -0,0 +1,5 @@ +def main(request, response): + headers = [(b"Content-type", b"text/html;charset=utf-8")] + content = u"<!doctype html><div id=test></div>" + + return headers, content |