blob: fdbdec35aa5d55b7e9d3d1571c5142683eaa5ba1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<html class="reftest-wait">
<head>
<script type='text/javascript'>
function changeAltText(img)
{
img.alt = img.alt + ". I'M INVISIBLE!";
document.documentElement.className = "";
}
</script>
</head>
<body onload="changeAltText(document.images[0])">
<img src='data:text/plain,' alt="initial">
</body>
</html>
|