diff options
Diffstat (limited to 'layout/reftests/bugs/395390-1.html')
-rw-r--r-- | layout/reftests/bugs/395390-1.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/layout/reftests/bugs/395390-1.html b/layout/reftests/bugs/395390-1.html new file mode 100644 index 000000000..fdbdec35a --- /dev/null +++ b/layout/reftests/bugs/395390-1.html @@ -0,0 +1,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> |