summaryrefslogtreecommitdiff
path: root/external/contributions/Google/sputnik_conformance_modified/15_Native/15.6_Boolean_Objects/15.6.4_Properties_of_the_Boolean_Prototype_Object/S15.6.4.1_A1.js
blob: 1ce64b7bd72a8dfe872f2d33a011b4dcec46557e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * @name: S15.6.4.1_A1;
 * @section: 15.6.4.1;
 * @assertion: The initial value of Boolean.prototype.constructor is the 
 * built-in Boolean constructor;
 * @description: Compare Boolean.prototype.constructor with Boolean;
 */

//CHECK#1
if(Boolean.prototype.constructor !== Boolean){
  $ERROR('#1: Boolean.prototype.constructor === Boolean');
}