diff options
Diffstat (limited to 'layout/reftests/position-dynamic-changes/max-width.html')
-rw-r--r-- | layout/reftests/position-dynamic-changes/max-width.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/layout/reftests/position-dynamic-changes/max-width.html b/layout/reftests/position-dynamic-changes/max-width.html new file mode 100644 index 0000000000..95e51157e0 --- /dev/null +++ b/layout/reftests/position-dynamic-changes/max-width.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html class="reftest-wait"> + <body> + <style> + #a { border: 1px solid black; max-width: 100px; height: 100px; } + </style> + <script> + document.addEventListener("MozReftestInvalidate", function() { + var a = document.querySelector("#a"); + a.style.maxWidth = "200px"; + document.documentElement.removeAttribute("class"); + }); + </script> + <div id="a"> + </div> + </body> +</html> |