summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/split/checking-if-varying-the-string-prototype-split-length-property-fails.js
blob: 0e44e7df6275e5336028f20b64f957be08cfbdb8 (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
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: The String.prototype.split.length property has the attribute ReadOnly
es5id: 15.5.4.14_A10
description: >
    Checking if varying the String.prototype.split.length property
    fails
includes: [propertyHelper.js]
---*/

assert(
  String.prototype.split.hasOwnProperty('length'),
  'String.prototype.split.hasOwnProperty(\'length\') must return true'
);

var __obj = String.prototype.split.length;

verifyNotWritable(String.prototype.split, "length", null, function() {
  return "shifted";
});

assert.sameValue(
  String.prototype.split.length,
  __obj,
  'The value of String.prototype.split.length is expected to equal the value of __obj'
);

reportCompare(0, 0);