mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 16:58:38 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
15
testing/web-platform/tests/fetch/nosniff/resources/css.py
Normal file
15
testing/web-platform/tests/fetch/nosniff/resources/css.py
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
def main(request, response):
|
||||
outcome = request.GET.first("outcome", "f")
|
||||
type = request.GET.first("type", None)
|
||||
|
||||
content = "/* nothing to see here */"
|
||||
|
||||
response.add_required_headers = False
|
||||
response.writer.write_status(200)
|
||||
response.writer.write_header("x-content-type-options", "nosniff")
|
||||
response.writer.write_header("content-length", len(content))
|
||||
if(type != None):
|
||||
response.writer.write_header("content-type", type)
|
||||
response.writer.end_headers()
|
||||
|
||||
response.writer.write(content)
|
||||
Loading…
Add table
Add a link
Reference in a new issue