summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug1335135.js
blob: ed986df109999b13a5014114145910651d384909 (plain)
1
2
3
4
5
6
7
8
9
10
11
if (this.Intl) {
    Object.defineProperty(Object.prototype, 0, {
        set: function() {}
    });
    function checkDisplayNames(names, expected) {}
    addIntlExtras(Intl);
    let gDN = Intl.getDisplayNames;
    checkDisplayNames(gDN('ar', {
        keys: ['dates/fields/month', ]
    }), {});
}