(e)
| 601 | // compatibility wrappers are needed. |
| 602 | |
| 603 | function e_preventDefault(e) { |
| 604 | if (e.preventDefault) { e.preventDefault(); } |
| 605 | else { e.returnValue = false; } |
| 606 | } |
| 607 | function e_stopPropagation(e) { |
| 608 | if (e.stopPropagation) { e.stopPropagation(); } |
| 609 | else { e.cancelBubble = true; } |
no outgoing calls
no test coverage detected