| <!doctype html> |
| <html> |
| <head> |
| <style> |
| .greenBox { position: absolute; height: 50px; width: 250px; background-color: green; } |
| #green { top: 200px; } |
| #green1 { top: 300px; } |
| #green2 { top: 400px; } |
| </style> |
| </head> |
| <body> |
| <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=91097"> Auto height is not working for regions</a>.</p> |
| <p>The three regions in the region chain all have auto-height, but the first region has all the flow thread content.</p> |
| <p>On success, you should see 3 vertical green lines.</p> |
| <div id="green" class="greenBox"></div> |
| <div id="green1" class="greenBox"></div> |
| <div id="green2" class="greenBox"></div> |
| </body> |
| </html> |