test_request_context.html (507B)
1 <!-- 2 Any copyright is dedicated to the Public Domain. 3 http://creativecommons.org/publicdomain/zero/1.0/ 4 --> 5 <!DOCTYPE HTML> 6 <html> 7 <head> 8 <title>Make sure that Request.context is not exposed by default</title> 9 <script src="/tests/SimpleTest/SimpleTest.js"></script> 10 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> 11 </head> 12 <body> 13 <script> 14 var req = new Request(""); 15 ok(!("context" in req), "Request.context should not be exposed by default"); 16 </script> 17 </body> 18 </html>