V8's test262 test harness doesn't yet expose anything for document.all-like objects. The only test262 tests I see failing due to that omission are related to iteration. I would've expected there to be some additional tests failing, such as ensuring that the document.all-like object will be === to neither null nor undefined (which would fail for us, as it is just undefined). There's a bunch of places in the spec where SameValue(undefined) comes up; a few more of these could be tested.
V8's test262 test harness doesn't yet expose anything for document.all-like objects. The only test262 tests I see failing due to that omission are related to iteration. I would've expected there to be some additional tests failing, such as ensuring that the document.all-like object will be
===to neithernullnorundefined(which would fail for us, as it is justundefined). There's a bunch of places in the spec where SameValue(undefined) comes up; a few more of these could be tested.