blob: 03503a5b7aab7df19c12acf3086d5db2e8ea5e73 [file] [log] [blame]
<!doctype html>
<html style="font: 16px/1.25 monospace;">
<head>
<style>
#region1, #region2 { height: 100px; }
#region1 { border: 5px solid green; width: 150px; }
#region2 { border: 5px solid blue; width: 150px; }
.container {
border: thin solid red;
overflow: auto;
float: left;
}
</style>
</head>
<body>
<p>Test that unsplittable boxes generate correct fragment layout overflow.</p>
<p>On success, the green region should generate scrollbars.</p>
<div class="container">
<div class="region" id="region1">
<div class="no_overflow" style="overflow: scroll; width: 50px; height: 150px; visibility: hidden;"></div>
</div>
</div>
<div class="container">
<div class="region" id="region2">
</div>
</div>
</body>
</html>