https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 95a4dac471e2eb2811555819a623676b597b5997 authored by kritisingh1 on 14 March 2018, 19:47:02 UTC
stops using wrappedJSObject in marionette executor
Tip revision: 95a4dac
encoding.py
from cgi import escape

def main(request, response):
    label = request.GET.first('label')
    return """<!doctype html><meta charset="%s">""" % escape(label)
back to top