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