| 1 |
wakaba |
1.1 |
<!DOCTYPE html> |
| 2 |
|
|
<html lang="en"> |
| 3 |
|
|
<head> |
| 4 |
|
|
<title>onload="javascript : code"</title> |
| 5 |
|
|
</head> |
| 6 |
|
|
<body onload="javascript : |
| 7 |
|
|
for (var i = 0; i < 2; i++) { |
| 8 |
|
|
if (i == 0) { |
| 9 |
|
|
document.forms.results.result.value = 'PASS'; |
| 10 |
|
|
break javascript; |
| 11 |
|
|
} else { |
| 12 |
|
|
document.forms.results.result.value = 'FAIL (ignored)'; |
| 13 |
|
|
} |
| 14 |
|
|
}"><form name="results"> |
| 15 |
|
|
<noscript><input type="text" name="result" value="noscript"></noscript> |
| 16 |
|
|
<script type="text/javascript"> |
| 17 |
|
|
document.write ('<input type="text" name="result"\ |
| 18 |
|
|
value="FAIL (not executed)">'); |
| 19 |
|
|
</script> |
| 20 |
|
|
</form></body> |
| 21 |
|
|
</html> |