summaryrefslogtreecommitdiff
path: root/test/suite/intl402/ch13/13.2/13.2.1.js
blob: c5a7b196770f5bb44b404f3a0a31d3e8657c38df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright 2012 Google Inc.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * @path intl402/ch13/13.2/13.2.1.js
 * @description Tests that the Intl.DateTimeFormat prototype object exists and
 * is not writable, enumerable, or configurable.
 * @author: Roozbeh Pournader
 */

var testcase = function() {
  "use strict";

  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.');
  }

  return true;
}
runTestCase(testcase);