summaryrefslogtreecommitdiff
path: root/test/built-ins/encodeURI/S15.1.3.3_A5.6.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/encodeURI/S15.1.3.3_A5.6.js')
-rw-r--r--test/built-ins/encodeURI/S15.1.3.3_A5.6.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/built-ins/encodeURI/S15.1.3.3_A5.6.js b/test/built-ins/encodeURI/S15.1.3.3_A5.6.js
new file mode 100644
index 000000000..bce835cb2
--- /dev/null
+++ b/test/built-ins/encodeURI/S15.1.3.3_A5.6.js
@@ -0,0 +1,13 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: The encodeURI property has not prototype property
+es5id: 15.1.3.3_A5.6
+description: Checking encodeURI.prototype
+---*/
+
+//CHECK#1
+if (encodeURI.prototype !== undefined) {
+ $ERROR('#1: encodeURI.prototype === undefined. Actual: ' + (encodeURI.prototype));
+}