aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/intl402/ch08/8.0/8.0.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/intl402/ch08/8.0/8.0.js')
-rw-r--r--test/suite/intl402/ch08/8.0/8.0.js39
1 files changed, 0 insertions, 39 deletions
diff --git a/test/suite/intl402/ch08/8.0/8.0.js b/test/suite/intl402/ch08/8.0/8.0.js
deleted file mode 100644
index e35db5dff..000000000
--- a/test/suite/intl402/ch08/8.0/8.0.js
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2012 Google Inc. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @description Tests properties of Intl object.
- */
-
-// We keep Intl extensible and not frozen.
-if (Object.isFrozen(Intl) === true) {
- $ERROR('isFrozen(Intl) returns true.');
-}
-
-if (Object.isExtensible(Intl) === false) {
- $ERROR('isExtensible(Intl) returns false.');
-}
-
-var falsey;
-
-// Intl can't be constructed.
-try {
- falsey = new Intl();
-} catch (e) {
-}
-
-if (!!falsey) {
- $ERROR('Intl object should not be constructable.');
-}
-
-// Intl can't be called as a function.
-try {
- /*jshint newcap:false*/
- falsey = Intl();
-} catch (e) {
-}
-
-if (!!falsey) {
- $ERROR('Intl should not be callable.');
-}
-