This commit is contained in:
Rick Waldron 2020-10-05 14:26:53 -04:00
parent 9d345b6a85
commit c0b18dfadf
5 changed files with 0 additions and 65 deletions

View File

@ -1,14 +0,0 @@
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-object.seal
description: >
Object.seal does not throw TypeError if type of first param is
a boolean primitive
info: |
If Type(O) is not Object, return O.
---*/
Object.seal(false);

View File

@ -1,12 +0,0 @@
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-object.seal
description: >
Object.seal does not throw TypeError if type of first param is
a number primitive
info: |
If Type(O) is not Object, return O.
---*/
Object.seal(0);

View File

@ -1,13 +0,0 @@
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-object.seal
description: >
Object.seal does not throw TypeError if type of first param is
a string primitive
info: |
If Type(O) is not Object, return O.
---*/
Object.seal("abc");

View File

@ -1,13 +0,0 @@
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-object.seal
description: >
Object.seal does not throw TypeError if type of first param is
null
info: |
If Type(O) is not Object, return O.
---*/
Object.seal(null);

View File

@ -1,13 +0,0 @@
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-object.seal
description: >
Object.seal does not throw TypeError if type of first param is
undefined
info: |
If Type(O) is not Object, return O.
---*/
Object.seal(undefined);