blob: 1b760bac70ecce7a80dc3052d0c446bb059ba7b0 (
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) {
$ERROR('#1: decodeURI.length === 1. Actual: ' + (decodeURI.length));
}
reportCompare(0, 0);
|