summaryrefslogtreecommitdiff
path: root/test/suite/intl402/ch12/12.2/12.2.1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/intl402/ch12/12.2/12.2.1.js')
-rw-r--r--test/suite/intl402/ch12/12.2/12.2.1.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/suite/intl402/ch12/12.2/12.2.1.js b/test/suite/intl402/ch12/12.2/12.2.1.js
new file mode 100644
index 000000000..4ec28c5d3
--- /dev/null
+++ b/test/suite/intl402/ch12/12.2/12.2.1.js
@@ -0,0 +1,26 @@
+// Copyright 2012 Google Inc. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/**
+ * @description Tests that the Intl.DateTimeFormat prototype object exists and
+ * is not writable, enumerable, or configurable.
+ * @author: Roozbeh Pournader
+ */
+
+var desc;
+
+if (!Intl.DateTimeFormat.hasOwnProperty('prototype')) {
+ $ERROR('Intl.DateTimeFormat has no prototype property');
+}
+
+desc = Object.getOwnPropertyDescriptor(Intl.DateTimeFormat, 'prototype');
+if (desc.writable === true) {
+ $ERROR('Intl.DateTimeFormat.prototype is writable.');
+}
+if (desc.enumerable === true) {
+ $ERROR('Intl.DateTimeFormat.prototype is enumerable.');
+}
+if (desc.configurable === true) {
+ $ERROR('Intl.DateTimeFormat.prototype is configurable.');
+}
+