Lines Matching full:pass
26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
29 PASS Object.defineProperties() threw exception TypeError: Object.defineProperties called on non-object.
30 PASS Object.defineProperties('a string') threw exception TypeError: Object.defineProperties called on non-object.
31 PASS Object.defineProperties({}, 'a string') threw exception TypeError: Property description must be an object: a.
32 PASS JSON.stringify(Object.defineProperties({},{property:{value:'foo', enumerable:true}, property2:{value:'foo', enumerable:true}})) is '{"property":"foo","property2":"foo"}'
33 PASS JSON.stringify(Object.defineProperties({},{property:{value:'foo'}, property2:{value:'foo', enumerable:true}})) is '{"property2":"foo"}'
34 PASS JSON.stringify(Object.defineProperties({property:'foo'},{property:{value:'foo', enumerable:true}, property2:{value:'foo', enumerable:true}})) is '{"property":"foo","property2":"foo"}'
35 PASS JSON.stringify(Object.defineProperties({property:'foo'},{property:{value:'foo', enumerable:false}, property2:{value:'foo', enumerable:true}})) is '{"property2":"foo"}'
36 PASS JSON.stringify(Object.defineProperties({property:'foo'},{property:{value:'foo'}, property2:{value:'foo', enumerable:true}})) is '{"property":"foo","property2":"foo"}'
37 PASS Object.defineProperties(emptyObject, {foo:{value: true}, bar:{get:function(){}, writable:true}}) threw exception TypeError: Invalid property. A property cannot both have accessors and be writable or have a value, #<Object>.
38 PASS 'foo' in emptyObject is false
39 PASS successfullyParsed is true