( a, b, ret )
| 5425 | }; |
| 5426 | |
| 5427 | function siblingCheck( a, b, ret ) { |
| 5428 | if ( a === b ) { |
| 5429 | return ret; |
| 5430 | } |
| 5431 | |
| 5432 | var cur = a.nextSibling; |
| 5433 | |
| 5434 | while ( cur ) { |
| 5435 | if ( cur === b ) { |
| 5436 | return -1; |
| 5437 | } |
| 5438 | |
| 5439 | cur = cur.nextSibling; |
| 5440 | } |
| 5441 | |
| 5442 | return 1; |
| 5443 | } |
| 5444 | |
| 5445 | sortOrder = docElem.compareDocumentPosition ? |
| 5446 | function( a, b ) { |
no outgoing calls
no test coverage detected
searching dependent graphs…