Skip to content
This repository has been archived by the owner on Nov 10, 2017. It is now read-only.

Can't log event objects or ArrayBuffers #838

Open
nickdesaulniers opened this issue Sep 24, 2013 · 0 comments
Open

Can't log event objects or ArrayBuffers #838

nickdesaulniers opened this issue Sep 24, 2013 · 0 comments
Assignees
Labels

Comments

@nickdesaulniers
Copy link
Collaborator

@ochameau , I suspect this has to do with the actors that provide remote debugging support.

If in clientside code in an app (this one happens to be privileged), if I try to log an Event or Custom Event object, I don't get the expected objects. Ex:

var e1 = new Event('nick');
var e2 = new CustomEvent('nick', detail: { name: 'nick' });
console.log(e1);
console.log(e2);

Expected:

[object Event]
[object CustomEvent]

Actual:

[object undefined]
undefined
@ghost ghost assigned ochameau Sep 24, 2013
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

2 participants