(e)
| 17310 | } |
| 17311 | |
| 17312 | function onElementMouseOut(e) { |
| 17313 | !shouldSilent(this, e) |
| 17314 | // "emphasis" event highlight has higher priority than mouse highlight. |
| 17315 | && !this.__highByOuter |
| 17316 | && traverseUpdate(this, singleEnterNormal); |
| 17317 | } |
| 17318 | |
| 17319 | function onElementEmphasisEvent(highlightDigit) { |
| 17320 | this.__highByOuter |= 1 << (highlightDigit || 0); |
nothing calls this directly
no test coverage detected