tenfourfox/layout/reftests/bugs/849407-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

29 lines
473 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
legend {
display: flex;
width: 200px;
height: 100px;
overflow: scroll;
border: 2px dashed gray;
}
div.child {
background: lightblue;
height: 1000px;
}
</style>
</head>
<body>
<fieldset>
<legend>
<div class="child">
There should be scrollbars making this area scrollable.
</div>
</legend>
</fieldset>
</body>
</html>