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