aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/15_Native/15.12_The_JSON_Object/15.12.2_JSON.parse/S15.12.2_A1.js
blob: 286a190dac9ab0c47e15e79da6244ea67e0d9481 (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
// Copyright 2011 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * @name: S15.12.2_A1;
 * @section: 15.12.2;
 * @assertion: JSON.parse must create a property with the given property name;
 * @description: Tests that JSON.parse treats "__proto__" as a regular property name;
 */


// Converted for Test262 from original Sputnik source

ES5Harness.registerTest( {
id: "S15.12.2_A1",

path: "TestCases/15_Native/15.12_The_JSON_Object/15.12.2_JSON.parse/S15.12.2_A1.js",

assertion: "JSON.parse must create a property with the given property name",

description: "Tests that JSON.parse treats \"__proto__\" as a regular property name",

test: function testcase() {
   var x = JSON.parse('{"__proto__":[]}');
if (Object.getPrototypeOf(x) !== Object.prototype) {
  $FAIL('#1: JSON.parse confused by "__proto__"');
}
if (!Array.isArray(x.__proto__)) {
  $FAIL('#2: JSON.parse did not set "__proto__" as a regular property');
}

 }
});