test262/website/resources/scripts/testcases2/15.1_The_Global_Object.json

30 lines
707 B
JSON

{
"testCollection": {
"name": "15.1_The_Global_Object",
"numTests": 3,
"tests": [
{
"section": "15.1",
"description": "It is not possible to use the global object as a constructor\nwith the new operator",
"negative": "",
"test": "new this;\n",
"id": "S15.1_A1_T1"
},
{
"section": "15.1",
"description": "It is not possible to use the global object as a constructor\nwith the new operator",
"negative": "",
"test": "new this();\n",
"id": "S15.1_A1_T2"
},
{
"section": "15.1",
"description": "It is not possible to invoke the global object as a function",
"negative": "",
"test": "this();\n",
"id": "S15.1_A2_T1"
}
]
}
}