( elem, el )
| 4169 | var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; |
| 4170 | |
| 4171 | var isHidden = function( elem, el ) { |
| 4172 | |
| 4173 | // isHidden might be called from jQuery#filter function; |
| 4174 | // in that case, element will be second argument |
| 4175 | elem = el || elem; |
| 4176 | return jQuery.css( elem, "display" ) === "none" || |
| 4177 | !jQuery.contains( elem.ownerDocument, elem ); |
| 4178 | }; |
| 4179 | |
| 4180 | |
| 4181 |
no outgoing calls
no test coverage detected