( elem )
| 4931 | return elem; |
| 4932 | } |
| 4933 | function restoreScript( elem ) { |
| 4934 | var match = rscriptTypeMasked.exec( elem.type ); |
| 4935 | |
| 4936 | if ( match ) { |
| 4937 | elem.type = match[ 1 ]; |
| 4938 | } else { |
| 4939 | elem.removeAttribute("type"); |
| 4940 | } |
| 4941 | |
| 4942 | return elem; |
| 4943 | } |
| 4944 | |
| 4945 | // Mark scripts as having already been evaluated |
| 4946 | function setGlobalEval( elems, refElements ) { |
nothing calls this directly
no outgoing calls
no test coverage detected