| <html style="font: 16px/1.25 monospace;"> |
| .no_overflow { margin: 2px; } |
| #region1, #region2 { height: 100px; } |
| #region1 { border: 5px solid green; width: 150px; } |
| #region2 { border: 5px solid blue; width: 200px; } |
| <p>Test that horizontal overflow in one region doesn't affect the horizontal overflow of another region.</p> |
| <p>On success, the blue region should generate an horizontal scrollbar inside the red container. The green region should not generate scrollbars.</p> |
| <div class="region" id="region1"> |
| <p class="no_overflow">Linetext1</p> |
| <p class="no_overflow">Linetext2</p> |
| <p class="no_overflow">Linetext3</p> |
| <p class="no_overflow">Linetext4</p> |
| <div class="region" id="region2"> |
| <p class="no_overflow">VeryVeryVeryVeryVeryVeryVeryLongLine</p> |
| <p class="no_overflow">Linetext6</p> |
| <p class="no_overflow">Linetext7</p> |
| <p class="no_overflow">Linetext8</p> |