summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/seal/15.2.3.8-1-4.js
blob: eab4d3d771657c62972bb6b5b23e31058c2fff17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 15.2.3.8-1-4
description: >
    Object.seal does not throw TypeError if type of first param is a
    string primitive
includes: [runTestCase.js]
---*/

function testcase() {
    Object.seal("abc");
    return true;
}
runTestCase(testcase);