summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/substring/S15.5.4.15_A1_T14.js
blob: 1df36136629c9c14c823d4e3d3621986342de690 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: String.prototype.substring (start, end)
es5id: 15.5.4.15_A1_T14
description: Used one argument, that is function(){}(). Instance is string
---*/

//////////////////////////////////////////////////////////////////////////////
//CHECK#1
if ("report".substring(function() {}()) !== "report") {
  throw new Test262Error('#1: "report".substring(function(){}()) === "report". Actual: ' + "report".substring(function() {}()));
}
//
//////////////////////////////////////////////////////////////////////////////

reportCompare(0, 0);