( document )
| 4442 | |
| 4443 | |
| 4444 | function createSafeFragment( document ) { |
| 4445 | var list = nodeNames.split( "|" ), |
| 4446 | safeFrag = document.createDocumentFragment(); |
| 4447 | |
| 4448 | if ( safeFrag.createElement ) { |
| 4449 | while ( list.length ) { |
| 4450 | safeFrag.createElement( |
| 4451 | list.pop() |
| 4452 | ); |
| 4453 | } |
| 4454 | } |
| 4455 | return safeFrag; |
| 4456 | } |
| 4457 | |
| 4458 | |
| 4459 | ( function() { |
no outgoing calls
no test coverage detected