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