forked from mirrors/gecko-dev
Automatic update from web-platform-tests Python 3: Port tests in html/semantics/scripting-1 (#24164) * Python 3: Port tests in html/semantics/scripting-1 * Change type of "type" to unicode * Convert item type before passing to urlencode() -- wpt-commits: b6a67998c6c2827319726af3bea65e572b5a125a wpt-pr: 24164
4 lines
162 B
Python
4 lines
162 B
Python
def main(request, response):
|
|
headers = [(b"Content-Type", b"text/javascript")]
|
|
body = u"test2_token = \"script executed\";"
|
|
return 200, headers, body
|