annevk/html-cross-origin-objects

Handle case where the accessor descriptor's [[Get]] is undefined

domenic opened this issue · 1 comments

Compare ES's [[Get]] with CrossOriginGet. ES handles the case of [[Get]] being undefined. I guess you just let this create a TypeError via Call, but you should probably add a NOTE that this is intentional.

Same problem with [[Set]], but in that case I don't think you want a TypeError; you want false. Probably?