/*
 userstyle variation of the
 Obtrusive JavaScript Checker by Robert Nyman
 http://www.robertnyman.com/2008/10/31/obtrusive-javascript-checker-greasemonkey-script-and-firefox-extension-to-find-inline-events/
 BEGIN
*/
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document
 url-prefix(http://)
,url-prefix(https://)
{

*[onclick] ,
*[ondblclick] ,
*[onmouseover] ,
*[onmouseout] ,
*[onfocus] ,
*[onblur] ,
*[onsubmit] ,
*[onkeyup] ,
*[onkeydown] ,
/*
 ... I cannot remember more for now 
*/
a[href^='javascript:'] ,
a[href='#']
{ outline: 2px solid red !important
}

/*
 you can even display it, you know ...

*[some_attribute]::before
{ content: attr(some_attribute)
}

*/


}

/*
 END
 userstyle variation of the
 Obtrusive JavaScript Checker by Robert Nyman
*/

