Name Description Size
15.2.3.11-0-1.js --- es5id: 15.2.3.11-0-1 description: Object.isSealed must exist as a function --- 326
15.2.3.11-0-2.js --- es5id: 15.2.3.11-0-2 description: Object.isSealed must exist as a function taking 1 parameter --- 336
15.2.3.11-1.js --- es5id: 15.2.3.11-1 description: > Object.isSealed does not throw TypeError if type of first param is not Object --- 311
15.2.3.11-4-1.js --- es5id: 15.2.3.11-4-1 description: Object.isSealed returns false for all built-in objects (Global) --- 301
15.2.3.11-4-2.js --- es5id: 15.2.3.11-4-2 description: Object.isSealed returns false for all built-in objects (Object) --- 336
15.2.3.11-4-3.js --- es5id: 15.2.3.11-4-3 description: > Object.isSealed returns false for all built-in objects (Object.prototype) --- 366
15.2.3.11-4-4.js --- es5id: 15.2.3.11-4-4 description: Object.isSealed returns false for all built-in objects (Function) --- 340
15.2.3.11-4-5.js --- es5id: 15.2.3.11-4-5 description: > Object.isSealed returns false for all built-in objects (Function.prototype) --- 370
15.2.3.11-4-6.js --- es5id: 15.2.3.11-4-6 description: Object.isSealed returns false for all built-in objects (Array) --- 334
15.2.3.11-4-7.js --- es5id: 15.2.3.11-4-7 description: > Object.isSealed returns false for all built-in objects (Array.prototype) --- 364
15.2.3.11-4-8.js --- es5id: 15.2.3.11-4-8 description: Object.isSealed returns false for all built-in objects (String) --- 336
15.2.3.11-4-9.js --- es5id: 15.2.3.11-4-9 description: > Object.isSealed returns false for all built-in objects (String.prototype) --- 366
15.2.3.11-4-10.js --- es5id: 15.2.3.11-4-10 description: Object.isSealed returns false for all built-in objects (Boolean) --- 339
15.2.3.11-4-11.js --- es5id: 15.2.3.11-4-11 description: > Object.isSealed returns false for all built-in objects (Boolean.prototype) --- 369
15.2.3.11-4-12.js --- es5id: 15.2.3.11-4-12 description: Object.isSealed returns false for all built-in objects (Number) --- 337
15.2.3.11-4-13.js --- es5id: 15.2.3.11-4-13 description: > Object.isSealed returns false for all built-in objects (Number.prototype) --- 367
15.2.3.11-4-14.js --- es5id: 15.2.3.11-4-14 description: Object.isSealed returns false for all built-in objects (Math) --- 333
15.2.3.11-4-15.js --- es5id: 15.2.3.11-4-15 description: Object.isSealed returns false for all built-in objects (Date) --- 333
15.2.3.11-4-16.js --- es5id: 15.2.3.11-4-16 description: > Object.isSealed returns false for all built-in objects (Date.prototype) --- 363
15.2.3.11-4-17.js --- es5id: 15.2.3.11-4-17 description: Object.isSealed returns false for all built-in objects (RegExp) --- 337
15.2.3.11-4-18.js --- es5id: 15.2.3.11-4-18 description: > Object.isSealed returns false for all built-in objects (RegExp.prototype) --- 367
15.2.3.11-4-19.js --- es5id: 15.2.3.11-4-19 description: Object.isSealed returns false for all built-in objects (Error) --- 335
15.2.3.11-4-20.js --- es5id: 15.2.3.11-4-20 description: > Object.isSealed returns false for all built-in objects (Error.prototype) --- 365
15.2.3.11-4-21.js --- es5id: 15.2.3.11-4-21 description: Object.isSealed returns false for all built-in objects (EvalError) --- 343
15.2.3.11-4-22.js --- es5id: 15.2.3.11-4-22 description: Object.isSealed returns false for all built-in objects (RangeError) --- 345
15.2.3.11-4-23.js --- es5id: 15.2.3.11-4-23 description: > Object.isSealed returns false for all built-in objects (ReferenceError) --- 363
15.2.3.11-4-24.js --- es5id: 15.2.3.11-4-24 description: > Object.isSealed returns false for all built-in objects (SyntaxError) --- 357
15.2.3.11-4-25.js --- es5id: 15.2.3.11-4-25 description: Object.isSealed returns false for all built-in objects (TypeError) --- 343
15.2.3.11-4-26.js --- es5id: 15.2.3.11-4-26 description: Object.isSealed returns false for all built-in objects (URIError) --- 341
15.2.3.11-4-27.js --- es5id: 15.2.3.11-4-27 description: Object.isSealed returns false for all built-in objects (JSON) --- 333
browser.js 0
name.js --- es6id: 19.1.2.13 description: > Object.isSealed.name is "isSealed". info: | Object.isSealed ( O ) 17 ECMAScript Standard Built-in Objects: Every built-in Function object, including constructors, that is not identified as an anonymous function has a name property whose value is a String. Unless otherwise specified, the name property of a built-in Function object, if it exists, has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true }. includes: [propertyHelper.js] --- 827
not-a-constructor.js --- esid: sec-ecmascript-standard-built-in-objects description: > Object.isSealed does not implement [[Construct]], is not new-able info: | ECMAScript Function Objects Built-in function objects that are not identified as constructors do not implement the [[Construct]] internal method unless otherwise specified in the description of a particular function. sec-evaluatenew ... 7. If IsConstructor(constructor) is false, throw a TypeError exception. ... includes: [isConstructor.js] features: [Reflect.construct, arrow-function] --- 884
proxy-no-ownkeys-returned-keys-order.js --- esid: sec-object.issealed description: > If Proxy "ownKeys" trap is missing, keys are sorted by type in ascending chronological order. info: | TestIntegrityLevel ( O, level ) [...] 6. Let keys be ? O.[[OwnPropertyKeys]](). 7. For each element k of keys, do a. Let currentDesc be ? O.[[GetOwnProperty]](k). [[OwnPropertyKeys]] ( ) [...] 6. If trap is undefined, then a. Return ? target.[[OwnPropertyKeys]](). OrdinaryOwnPropertyKeys ( O ) [...] 3. For each own property key P of O such that Type(P) is String and P is not an array index, in ascending chronological order of property creation, do a. Add P as the last element of keys. 4. For each own property key P of O such that Type(P) is Symbol, in ascending chronological order of property creation, do a. Add P as the last element of keys. 5. Return keys. features: [Proxy, Symbol, Reflect] includes: [compareArray.js] --- 1473
shell.js 0