( elem )
| 4886 | return elem; |
| 4887 | } |
| 4888 | function restoreScript( elem ) { |
| 4889 | var match = rscriptTypeMasked.exec( elem.type ); |
| 4890 | |
| 4891 | if ( match ) { |
| 4892 | elem.type = match[ 1 ]; |
| 4893 | } else { |
| 4894 | elem.removeAttribute("type"); |
| 4895 | } |
| 4896 | |
| 4897 | return elem; |
| 4898 | } |
| 4899 | |
| 4900 | // Mark scripts as having already been evaluated |
| 4901 | function setGlobalEval( elems, refElements ) { |
nothing calls this directly
no outgoing calls
no test coverage detected