en los navegadores mas nuevos parece funcionar:
Cita: <html>
<head>
<script>
function f1(){
alert("en el checkbox");
if(document.all){
window.event.cancelBubble=true;
}else{
event.stopPropagation();
}
}
function f2(){
alert("en el TR");
}
</script>
</head>
<body>
<table border="1">
<tr onclick="f2()" width="500" bgcolor="#FFFFCC"><td border="1px" width="200"><form><input onclick="f1()" type="checkbox" name="a">asdasdasdasdasd</form></td><td border="1px" width="200"></td></tr>
</table>
</body>
</html>
ya en los mas viejitos no se que decirte.
saludos