Gabriel Ivăncescu (@insn) commented about dlls/mshtml/tests/es5.js:
expect_array(new C(), false);
});
+sync_test("array_splice", function() {
- var arr = [1,2,3,4,5]
- tmp = arr.splice(2);
Sorry, missed this, please add `var` before tmp, so you don't end up creating a global variable (and put semi-colon after arr decl).