From efcdf0de0c1a82092dfa88a7f197bc8fa2a28be0 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Fri, 5 Nov 2010 10:50:17 -0600 Subject: [PATCH] array detection fail --- tests/array-wtf.js | 71 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 tests/array-wtf.js diff --git a/tests/array-wtf.js b/tests/array-wtf.js new file mode 100644 index 0000000..01c246f --- /dev/null +++ b/tests/array-wtf.js @@ -0,0 +1,71 @@ +(function () { + require('remedial'); + + a = []; + a[2] = 27; + console.log(a); + // Expected: [undefined, undefined, 27]; + // Node/V8: [ 27 ]; + // FF3: [undefined, undefined, 27]; + console.log(a.length); + // 3 + console.log(typeOf(a)); + // array + + + + b = Object.create([]); + b[2] = 27; + console.log(b); + // Expected: [undefined, undefined, 27]; + // Node/V8: [ 27 ] + console.log(b.length); + // Expected: 3 + // Node/V8/FF: 0 + console.log(typeOf(b)); + // array + + + c = Object.create([]); + c.push(); + c.push(); + c.push(27); + console.log(c); + // Expected: [undefined, undefined, 27] + // Node: [ 27, length: 1 ] + // FF: [] + console.log(c.length); + // Expected: 3 + // Node/V8/FF: 1 + console.log(typeOf(c)); + // Expected: array + // Node/V8/FF: object +}()); + +/* + Exact Node Output: + [ 27 ] + 3 + array + [ 27 ] + 0 + array + [ 27, length: 1 ] + 1 + object + + Exact FF (firebug) Output (expanded): + [undefined, undefined, 27] + > 2 27 + 3 + array + [] + > 2 27 + 0 + array + [27] + > 0 27 + length 1 + 1 + object +*/