( elem, el )
| 4301 | var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; |
| 4302 | |
| 4303 | var isHidden = function( elem, el ) { |
| 4304 | |
| 4305 | // isHidden might be called from jQuery#filter function; |
| 4306 | // in that case, element will be second argument |
| 4307 | elem = el || elem; |
| 4308 | return jQuery.css( elem, "display" ) === "none" || |
| 4309 | !jQuery.contains( elem.ownerDocument, elem ); |
| 4310 | }; |
| 4311 | |
| 4312 | |
| 4313 |
no outgoing calls
no test coverage detected