| <!DOCTYPE html> |
| <html> |
| <head> |
| <style> |
| #content { |
| -webkit-flow-into: f; |
| color: green; |
| font: 50px/1 Ahem; |
| } |
| |
| #region { |
| -webkit-flow-from: f; |
| |
| position: absolute; |
| top: 150px; |
| left: 100px; |
| |
| width: 100px; |
| height: 100px; |
| |
| border-radius: 50%; |
| border: 10px solid blue; |
| overflow: hidden; |
| } |
| </style> |
| </head> |
| <body> |
| <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=133476">WebKit Bug 133476</a></p> |
| <p>A region having border radius and overflow clip should properly clip the flow thread content.</p> |
| <p>On success you should see a green circle with a blue border.</p> |
| <div id="content">AA AA AA AA</div> |
| <div id="region"></div> |
| </body> |
| </html> |