(elem)
| 789 | } |
| 790 | |
| 791 | function restoreScript(elem) { |
| 792 | var match = rscriptTypeMasked.exec(elem.type); |
| 793 | |
| 794 | if (match) { |
| 795 | elem.type = match[1]; |
| 796 | } else { |
| 797 | elem.removeAttribute("type"); |
| 798 | } |
| 799 | |
| 800 | return elem; |
| 801 | } |
| 802 | |
| 803 | // Mark scripts as having already been evaluated |
| 804 |
nothing calls this directly
no outgoing calls
no test coverage detected