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