<!DOCTYPE html> <html class="reftest-wait"> <head> <style type="text/css"> #separator { height: 20px; background-color: green; } #first-child { height: 20px; margin-top: 20px; background-color: blue; } #parent { margin-top: 0px; } </style> <script type="text/javascript"> function test() { document.getElementById('parent').style.marginTop = '-20px'; document.documentElement.removeAttribute('class'); } document.addEventListener('MozReftestInvalidate', test); </script> </head> <body> <div id="separator"></div> <div id="parent"> <div id="first-child"></div> </div> </body> </html>