diff options
Diffstat (limited to 'layout/reftests/bugs/505743-1.html')
-rw-r--r-- | layout/reftests/bugs/505743-1.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/layout/reftests/bugs/505743-1.html b/layout/reftests/bugs/505743-1.html new file mode 100644 index 0000000000..df6cd0f5af --- /dev/null +++ b/layout/reftests/bugs/505743-1.html @@ -0,0 +1,25 @@ +<!DOCTYPE HTML> +<html class="reftest-wait"> +<head> +<style> +#a { + display: block; + opacity:1; + overflow:hidden; + width: 100px; + height: 100px; + background-color: lime; +} +</style> +</head> +<body> +<span id="a"></span> +<script> +function doe() { + document.getElementById('a').style.opacity = '0'; + document.documentElement.removeAttribute("class"); +} +document.addEventListener("MozReftestInvalidate", doe); +</script> +</body> +</html> |