var input = document.createElement("input");
input.onclick = function (ev) {
console.log(ev.timeStamp === 0 ? "WHY IS IT ZERO" : "It's not broken");
};
input.click()
var ev = document.createEvent("Event");
console.log(ev.timeStamp === 0 ? "THIS IS MADNESS" : "At least this works");
In firefox the first timeStamp is 0
and in chrome the timestamp is a sensible number.
In both firefox and chrome the second timeStamp is a sensible number.
Bug #238041 - nsDOMEvent::AllocateEvent assigns a PR_Now() into a PRUint32