aboutsummaryrefslogtreecommitdiffstats
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.js26
1 files changed, 0 insertions, 26 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
deleted file mode 100644
index 0ff91067a..000000000
--- a/test/suite/intl402/ch11/11.2/11.2.1.js
+++ /dev/null
@@ -1,26 +0,0 @@
-// 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.NumberFormat prototype object exists and
- * is not writable, enumerable, or configurable.
- * @author: Roozbeh Pournader
- */
-
-var desc;
-
-if (!Intl.NumberFormat.hasOwnProperty('prototype')) {
- $ERROR('Intl.NumberFormat has no prototype property');
-}
-
-desc = Object.getOwnPropertyDescriptor(Intl.NumberFormat, 'prototype');
-if (desc.writable === true) {
- $ERROR('Intl.NumberFormat.prototype is writable.');
-}
-if (desc.enumerable === true) {
- $ERROR('Intl.NumberFormat.prototype is enumerable.');
-}
-if (desc.configurable === true) {
- $ERROR('Intl.NumberFormat.prototype is configurable.');
-}
-