Sign in
chromium
/
external
/
github.com
/
web-platform-tests
/
wpt
/
refs/heads/johnjanInputTestAddition
/
.
/
xhr
/
resources
/
shift-jis-html.py
blob: fab78c0b3ac8315c65df3824cfcbefd70f76dcbf [
file
] [
edit
]
def
main
(
request
,
response
):
headers
=
[(
"Content-type"
,
"text/html;charset=shift-jis"
)]
# Shift-JIS bytes for katakana TE SU TO ('test')
content
=
chr
(
0x83
)
+
chr
(
0x65
)
+
chr
(
0x83
)
+
chr
(
0x58
)
+
chr
(
0x83
)
+
chr
(
0x67
)
return
headers
,
content