Update web-platform-tests to revision 8d1253647cfe3809ddf58a4ad7c9da5f26985d7e

This commit is contained in:
WPT Sync Bot 2020-11-13 08:20:12 +00:00
parent 553ff20468
commit 48c420fdb5
440 changed files with 6186 additions and 3542 deletions

View file

@ -0,0 +1,11 @@
# This file needs to be a sibling of the test files (and not under resources/)
# so that base URL resolution is the same between those test files and <script>s
# pointing to this file.
from wptserve.utils import isomorphic_decode
def main(request, response):
return (
((b'Content-Type', b'text/javascript'),),
u'import "{}";\n'.format(isomorphic_decode(request.GET.first(b'url')))
)