summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/decodeURI/S15.1.3.1_A5.4.js
blob: 93fde36ac7ecf38ac85be8bc9d57a8783bb27cb5 (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.

/*---
info: The length property of decodeURI is 1
esid: sec-decodeuri-encodeduri
description: decodeURI.length === 1
---*/

//CHECK#1
if (decodeURI.length !== 1) {
  throw new Test262Error('#1: decodeURI.length === 1. Actual: ' + (decodeURI.length));
}

reportCompare(0, 0);