Skip to content
Snippets Groups Projects
supportedLocalesOf-returned-array-elements-are-not-frozen.js 1.47 KiB
Newer Older
  • Learn to ignore specific revisions
  • // Copyright 2012 Mozilla Corporation. All rights reserved.
    // This code is governed by the BSD license found in the LICENSE file.
    
    
    Brian Terlson's avatar
    Brian Terlson committed
    /*---
    
    Brian Terlson's avatar
    Brian Terlson committed
    es5id: 9.2.8_4
    
    Brian Terlson's avatar
    Brian Terlson committed
    description: >
        Tests that the array returned by SupportedLocales is extensible,
    
        writable and configurable.
    
    Brian Terlson's avatar
    Brian Terlson committed
    author: Norbert Lindenberg
    includes: [testIntl.js]
    ---*/
    
    function testNormalProperty(obj, property) {
    
        var desc = Object.getOwnPropertyDescriptor(obj, property);
    
        assert.sameValue(desc.writable, true, "Property " + property + " of object returned by SupportedLocales is not writable.");
        assert.sameValue(desc.configurable, true, "Property " + property + " of object returned by SupportedLocales is not configurable.");
    }
    
    function testLengthProperty(obj, property) {
        var desc = Object.getOwnPropertyDescriptor(obj, property);
        assert.sameValue(desc.writable, true, "Property " + property + " of object returned by SupportedLocales is not writable.");
    
    André Bargull's avatar
    André Bargull committed
        assert.sameValue(desc.configurable, false, "Property " + property + " of object returned by SupportedLocales is configurable.");
    
    }
    
    testWithIntlConstructors(function (Constructor) {
        var defaultLocale = new Constructor().resolvedOptions().locale;
        var supported = Constructor.supportedLocalesOf([defaultLocale]);
    
    André Bargull's avatar
    André Bargull committed
        assert(Object.isExtensible(supported), "Object returned by SupportedLocales is not extensible.");
    
            testNormalProperty(supported, i);
    
        testLengthProperty(supported, "length");