mirror of
https://github.com/servo/servo.git
synced 2025-10-10 05:20:19 +01:00
8 lines
190 B
Python
8 lines
190 B
Python
def main(request, response):
|
|
code = """
|
|
test(function() {
|
|
assert_equals(self.%s, undefined);
|
|
});
|
|
""" % request.GET["varName"]
|
|
|
|
return ([("Content-Type", "text/javascript")], code)
|