The onerror page on MSDN states that the onerror handler can be attached to a script element and that it "Fires when an error occurs during object loading.".
For the purpose of unit tests, I am trying to get this onerror handler to fire, but could not find a suitable example.
The following code triggers an error in Firefox, but no alert is displayed in Internet Explorer
<script src="http://www.google.com/NOTFOUND.js" onerror="alert('error fired')"></script>
Does anyone know a value for script.src that would fire the handler attached to script.onerror?