blob: 28a460dfe67af8a59b7258caae177d10227ce0b8 [file] [log] [blame]
<!DOCTYPE html>
<link rel="stylesheet" href="resources/region-style.css"></link>
<script type="text/javascript" charset="utf-8" src="resources/helper.js"></script>
<style>
html { -webkit-writing-mode: horizontal-bt; }
body { margin: 10px; }
#region1 {
position: absolute;
left: 100px;
top: 10px;
width: 50px;
height: 100px;
}
#region2 {
position: absolute;
top: 10px;
left: 200px;
width: 50px;
height: 50px;
padding: 10px 20px 30px 40px;
border: 1px solid black;
}
.finished #region1, .finished #region2 {
display: none;
}
</style>
<div id="flow" class="flowArticle">
<div id="green" class="greenBox"></div>
<div id="blue" class="blueBox"></div>
<div id="orange" class="orangeBox"></div>
</div>
<div id="region1" class="regionArticle"></div>
<div id="region2" class="regionArticle"></div>
<script>
if (window.layoutTestController)
layoutTestController.dumpAsText();
var expectedBoundingRects = {
green: [60, 100, 110, 150, 50, 50],
blue: [10, 100, 60, 150, 50, 50],
orange: [21, 241, 71, 291, 50, 50]
};
if (testBoundingRects(expectedBoundingRects))
document.body.className = "finished";
</script>