gecko/layout/reftests/bugs/395390-1.html

15 lines
323 B
HTML
Raw Normal View History

2008-08-04 22:35:01 -07:00
<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>