diff options
Diffstat (limited to 'layout/reftests/display-list/retained-dl-wrap-list.html')
-rw-r--r-- | layout/reftests/display-list/retained-dl-wrap-list.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/layout/reftests/display-list/retained-dl-wrap-list.html b/layout/reftests/display-list/retained-dl-wrap-list.html new file mode 100644 index 0000000000..ab0541bac9 --- /dev/null +++ b/layout/reftests/display-list/retained-dl-wrap-list.html @@ -0,0 +1,15 @@ +<html class="reftest-wait"> +<body> + <div style="float:left; width:200px; height:200px; background-color: red"> + <div style="width:100px; height:100px;" id="hover"></div> + </div> +</body> +<script> +function doTest() { + document.getElementById("hover").style.backgroundColor = "blue"; + document.documentElement.removeAttribute("class"); +} + +window.addEventListener("MozReftestInvalidate", doTest); +</script> +</html> |