blob: 5174bd1d9f720115a1a8c7fa32a86db396ff7408 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>CSS Flex-basis Test</title>
<link rel="author" title="Tomek Wytrebowicz" href="mailto:tomalecpub+github@gmail.com">
<style type="text/css">
.flex {
width: 200px;
height: 200px;
}
.flex > * {
background: green;
height: 200px;
width: 100px;
overflow: scroll;
display: inline-block;
}
</style>
</head>
<body>
<p>Test passes if there is a filled green square with scrollbars and <strong>no red</strong>.</p>
<div class="flex">
<div></div><div></div>
</div>
</body>
</html>