aboutsummaryrefslogtreecommitdiffstats
path: root/website/resources/scripts/testcases2/15.9.5.21_Date.prototype.getUTCMinutes.json
blob: 99974472325ad5a346bf6331d79349f3b7d5a940 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
 "testCollection": {
  "name": "15.9.5.21_Date.prototype.getUTCMinutes",
  "numTests": 7,
  "tests": [
   {
    "section": "15.9.5.21",
    "description": "Checking absence of ReadOnly attribute",
    "test": "x = Date.prototype.getUTCMinutes;\nif(x === 1)\n  Date.prototype.getUTCMinutes = 2;\nelse\n  Date.prototype.getUTCMinutes = 1;\nif (Date.prototype.getUTCMinutes === x) {\n  $ERROR('#1: The Date.prototype.getUTCMinutes has not the attribute ReadOnly');\n}\n\n",
    "id": "S15.9.5.21_A1_T1"
   },
   {
    "section": "15.9.5.21",
    "description": "Checking absence of DontDelete attribute",
    "test": "if (delete Date.prototype.getUTCMinutes  === false) {\n  $ERROR('#1: The Date.prototype.getUTCMinutes property has not the attributes DontDelete');\n}\n\nif (Date.prototype.hasOwnProperty('getUTCMinutes')) {\n  $FAIL('#2: The Date.prototype.getUTCMinutes property has not the attributes DontDelete');\n}\n\n",
    "id": "S15.9.5.21_A1_T2"
   },
   {
    "section": "15.9.5.21",
    "description": "Checking DontEnum attribute",
    "test": "if (Date.prototype.propertyIsEnumerable('getUTCMinutes')) {\n  $ERROR('#1: The Date.prototype.getUTCMinutes property has the attribute DontEnum');\n}\n\nfor(x in Date.prototype) {\n  if(x === \"getUTCMinutes\") {\n    $ERROR('#2: The Date.prototype.getUTCMinutes has the attribute DontEnum');\n  }\n}\n\n",
    "id": "S15.9.5.21_A1_T3"
   },
   {
    "section": "15.9.5.21",
    "description": "The \"length\" property of the \"getUTCMinutes\" is 0",
    "test": "if(Date.prototype.getUTCMinutes.hasOwnProperty(\"length\") !== true){\n  $ERROR('#1: The getUTCMinutes has a \"length\" property');\n}\n\nif(Date.prototype.getUTCMinutes.length !== 0){\n  $ERROR('#2: The \"length\" property of the getUTCMinutes is 0');\n}\n\n",
    "id": "S15.9.5.21_A2_T1"
   },
   {
    "section": "15.9.5.21",
    "description": "Checking ReadOnly attribute",
    "test": "x = Date.prototype.getUTCMinutes.length;\nDate.prototype.getUTCMinutes.length = 1;\nif (Date.prototype.getUTCMinutes.length !== x) {\n  $ERROR('#1: The Date.prototype.getUTCMinutes.length has the attribute ReadOnly');\n}\n\n",
    "id": "S15.9.5.21_A3_T1"
   },
   {
    "section": "15.9.5.21",
    "description": "Checking DontDelete attribute",
    "test": "if (delete Date.prototype.getUTCMinutes.length  !== false) {\n  $ERROR('#1: The Date.prototype.getUTCMinutes.length property has the attributes DontDelete');\n}\n\nif (!Date.prototype.getUTCMinutes.hasOwnProperty('length')) {\n  $FAIL('#2: The Date.prototype.getUTCMinutes.length property has the attributes DontDelete');\n}\n\n",
    "id": "S15.9.5.21_A3_T2"
   },
   {
    "section": "15.9.5.21",
    "description": "Checking DontEnum attribute",
    "test": "if (Date.prototype.getUTCMinutes.propertyIsEnumerable('length')) {\n  $ERROR('#1: The Date.prototype.getUTCMinutes.length property has the attribute DontEnum');\n}\n\nfor(x in Date.prototype.getUTCMinutes) {\n  if(x === \"length\") {\n    $ERROR('#2: The Date.prototype.getUTCMinutes.length has the attribute DontEnum');\n  }\n}\n\n",
    "id": "S15.9.5.21_A3_T3"
   }
  ]
 }
}