mirror of
https://github.com/servo/servo.git
synced 2025-10-10 05:20:19 +01:00
7 lines
228 B
Python
7 lines
228 B
Python
from html import escape
|
|
|
|
from wptserve.utils import isomorphic_decode
|
|
|
|
def main(request, response):
|
|
label = request.GET.first(b'label')
|
|
return u"""<!doctype html><meta charset="%s">""" % escape(isomorphic_decode(label))
|