summaryrefslogtreecommitdiff
path: root/test/intl402/Intl/proto.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/intl402/Intl/proto.js')
-rw-r--r--test/intl402/Intl/proto.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/intl402/Intl/proto.js b/test/intl402/Intl/proto.js
new file mode 100644
index 000000000..34fe92641
--- /dev/null
+++ b/test/intl402/Intl/proto.js
@@ -0,0 +1,10 @@
+// Copyright 2013 Mozilla Corporation. All rights reserved.
+// This code is governed by the license found in the LICENSE file.
+
+/*---
+es5id: 8.0
+description: Tests that Intl has Object.prototype as its prototype.
+author: Norbert Lindenberg
+---*/
+
+assert.sameValue(Object.getPrototypeOf(Intl), Object.prototype, "Intl doesn't have Object.prototype as its prototype.");