| .flowContent { font-size: 50px; color: green; font-family: Ahem; } |
| #article { -webkit-flow-into: flow; } |
| #p2 { -webkit-region-break-before: always; } |
| .regionSize { width: 250px; } |
| #region { -webkit-flow-from: flow; position: absolute; top: 150px; xbackground-color: green; } |
| #region2 { -webkit-flow-from: flow; height: 200px; position: absolute; top: 150px; left: 350px; } |
| .redBox { position: absolute; height: 50px; background-color: red; } |
| #red1 { top: 150px; left: 350px; } |
| #red2 { top: 250px; left: 350px; } |
| <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 first region is auto-height and the second region has specified height. The height of the first region is determined by the break from the second paragraph in the flow.</p> |
| <p>On success, you should see 1 green line on the left and 2 green lines on the right.</p> |
| <div id="red" class="redBox regionSize"></div> |
| <div id="red1" class="redBox regionSize"></div> |
| <div id="red2" class="redBox regionSize"></div> |
| <div id="article" class="flowContent"> |