summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/client-hints/accept-ch-stickiness/resources/accept-ch-and-redir.py
blob: 16ab11faa7d313492cce6af006630a40cb180c50 (plain)
1
2
3
4
5
def main(request, response):
    url = b''
    if b'url' in request.GET:
        url = request.GET[b'url']
    return 301, [(b'Location', url),(b'Accept-CH', b'sec-ch-device-memory, device-memory, Sec-CH-DPR, DPR')], u''