It is defined in ECMAScript 3rd edition. It is available in IE5.5-IE8 (JScript version 1), Firefox 1+, Chrome (all versions), Opera, Safari and probably most other javascript supporting browsers.
You can use it safe in the knowledge that it will work.
You should err on the side of caution when using it to check event support. All implementations except Mozilla support "eventname" in element as a test for DOM events, Firefox will result in false here unless a handler is defined.
"onclick" in document.body; // -> false in Fx, true in others
document.body.setAttribute("onclick", "");
typeof(document.body.onclick == "function") // -> true in Fx