mirror of
https://github.com/servo/servo
synced 2026-04-30 03:17:15 +02:00
5 lines
119 B
Python
5 lines
119 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
def main(request, response):
|
|
return "PASS" if request.GET.first('x') == 'å' else "FAIL"
|