summaryrefslogtreecommitdiff
path: root/test/suite/intl402/ch11/11.2/11.2.1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/intl402/ch11/11.2/11.2.1.js')
-rw-r--r--test/suite/intl402/ch11/11.2/11.2.1.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/test/suite/intl402/ch11/11.2/11.2.1.js b/test/suite/intl402/ch11/11.2/11.2.1.js
new file mode 100644
index 000000000..e5ceb08fc
--- /dev/null
+++ b/test/suite/intl402/ch11/11.2/11.2.1.js
@@ -0,0 +1,32 @@
+// Copyright 2012 Google Inc. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/**
+ * @path intl402/ch11/11.2/11.2.1.js
+ * @description Tests that the Intl.Collator prototype object exists and
+ * is not writable, enumerable, or configurable.
+ */
+
+var testcase = function() {
+ "use strict";
+
+ var desc;
+
+ if (!Intl.Collator.hasOwnProperty('prototype')) {
+ $ERROR('Intl.Collator has no prototype property');
+ }
+
+ desc = Object.getOwnPropertyDescriptor(Intl.Collator, 'prototype');
+ if (desc.writable === true) {
+ $ERROR('Intl.Collator.prototype is writable.');
+ }
+ if (desc.enumerable === true) {
+ $ERROR('Intl.Collator.prototype is enumerable.');
+ }
+ if (desc.configurable === true) {
+ $ERROR('Intl.Collator.prototype is configurable.');
+ }
+
+ return true;
+}
+runTestCase(testcase);