blob: bb0cc3bbc421a375a42067721de8fecd7d7e63c9 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<link href="resources/flexbox.css" rel="stylesheet">
<style>
.flexbox {
background-color: lightgrey;
}
.flexbox p {
height: 100px;
width: 100px;
margin: 10px;
background-color: blue;
}
</style>
<script src="../../resources/js-test-pre.js"></script>
<script src="../../resources/check-layout.js"></script>
</head>
<body onload="checkLayout('.flexbox')">
<div class="flexbox" style="position: relative">
<div data-offset-x="0" data-offset-y="0" data-expected-width="120" data-expected-height="120">
<p data-offset-x="10" data-offset-y="10" data-expected-width="100" data-expected-height="100"></p>
</div>
</div>
</body>
</html>