( elem )
| 6022 | return elem; |
| 6023 | } |
| 6024 | function restoreScript( elem ) { |
| 6025 | var match = rscriptTypeMasked.exec( elem.type ); |
| 6026 | |
| 6027 | if ( match ) { |
| 6028 | elem.type = match[ 1 ]; |
| 6029 | } else { |
| 6030 | elem.removeAttribute("type"); |
| 6031 | } |
| 6032 | |
| 6033 | return elem; |
| 6034 | } |
| 6035 | |
| 6036 | // Mark scripts as having already been evaluated |
| 6037 | function setGlobalEval( elems, refElements ) { |
nothing calls this directly
no outgoing calls
no test coverage detected