summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/Date/prototype/toLocaleString/default-options-object-prototype.js
blob: 28654c817318615d5d87928d5f28c480774f786d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2017 Daniel Ehrenberg. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-todatetimeoptions
description: >
  Monkey-patching Object.prototype does not change the default
  options for DateTimeFormat as a null prototype is used.
info: |
  ToDateTimeOptions ( options, required, defaults )

  1. If options is undefined, let options be null; otherwise let options be ? ToObject(options).
  1. Let options be ObjectCreate(options).
---*/

if (new Intl.DateTimeFormat("en").resolvedOptions().locale === "en") {
  Object.prototype.year = "2-digit";
  assert.notSameValue(new Date().toLocaleString("en").length, 2);
}

reportCompare(0, 0);