So, what happened to the DOM level 1?
For example there are DOM level 0 events like this
window.onload = func;
element.onclick = func;
and there's DOM level 2 (and now even level 3) events
element.addEventListener("click", func, false);
But no mention anywhere about DOM level 1 events? Was it like with Lesuire suit Larry 4 that got lost before it was ever released or was the nr 1 just skipped or didn't the level 1 include anything related to the events?