diff options
Diffstat (limited to 'layout/reftests/backgrounds/root-element-display-none-1.html')
-rw-r--r-- | layout/reftests/backgrounds/root-element-display-none-1.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/layout/reftests/backgrounds/root-element-display-none-1.html b/layout/reftests/backgrounds/root-element-display-none-1.html new file mode 100644 index 0000000000..0e0977433d --- /dev/null +++ b/layout/reftests/backgrounds/root-element-display-none-1.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html id="theroot" style="background-color: red" class="reftest-wait"> + <head> + <script> + function dodisplaynone() { + document.getElementById('theroot').style.display = 'none'; + document.documentElement.className = ""; + } + document.addEventListener("MozReftestInvalidate", dodisplaynone); + </script> + </head> + <body> + </body> +</html> |