</div>
<pre id="test">
<script>
SimpleTest.waitForExplicitFinish(); var events = 0; var expectedEvents = 2;
function eventFired() {
++events;
if (events == expectedEvents) {
SimpleTest.finish();
}
}
</script>
<script
src="data:"
onerror="ok(true, 'Script with src=data: should fire onerror.');
eventFired();"
onload="ok(false, 'Script with src=data: should not fire onload.');
eventFired();"
>
ok(false, "Script with src=data: should not run textContent.");
</script>
<script
src="bogus:"
onerror="ok(true, 'Script with src=bogus: should fire onerror.');
eventFired();"
onload="ok(false, 'Script with src=bogus: should not fire onload.');
eventFired();"
>
ok(false, "Script with src=bogus: should not run textContent.");
</script>
</pre>
</body>
</html>
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.