(element)
| 1054 | |
| 1055 | // Ensure we never return the root HTML tag. |
| 1056 | function selfOrBody(element) { |
| 1057 | return isHtml(element) ? $(document.body) : $(element); |
| 1058 | } |
| 1059 | |
| 1060 | // For unusual cases like these, we standardize on returning the BODY |
| 1061 | // element as the offset parent. |
no test coverage detected